diff --git a/content/viewer/_index.de.md b/content/viewer/_index.de.md new file mode 100644 index 00000000..b8bb2db6 --- /dev/null +++ b/content/viewer/_index.de.md @@ -0,0 +1,402 @@ +--- +############################# Static ########################## +layout: "family" +date: 2023-12-20T06:39:57 +draft: false + +product: "Viewer" +product_tag: "viewer" + +############################# Head ############################ +head_title: "API zum Rendern und Anzeigen von Dokumenten | On-Premise-API und Online-Service" +head_description: "Rendern und betrachten Sie Word-, PDF-, Excel-, Powerpoint- oder Bilddateien einfach und kostenlos" + +############################# Header ########################## +title: "Einfaches Rendern und Anzeigen von Dokumenten" +description: | + Leistungsstarke Viewer-API zum Rendern verschiedener Dateien in PDF, HTML und Bild. + + Laden Sie Dokumente aus verschiedenen Quellen, einschließlich Dateien, Streams, URLs, FTP-Servern, Amazon S3, Azure Blob Storage und mehr. + + Generieren Sie reaktionsfähige HTML-Seiten, schützen Sie die ausgegebenen PDF-Dateien und ordnen Sie ihre Seiten neu an, drehen Sie Seiten, rendern Sie bei Bedarf Notizen und Kommentare. + +############################# Platforms ############################ +supported_platforms: + enable: true + head_title: "Wählen Sie Ihre Plattform" + title: "Unterstützte Plattformen" + description: "Die GroupDocs.Viewer-Bibliothek unterstützt die folgenden Betriebssysteme und Frameworks" + details_link_title: "Erfahren Sie mehr" + items: + # supported_platforms loop + - title: ".NET" + description: "GroupDocs.Viewer for .NET" + color: "blue" + tag: "net" + link: "/viewer/net/" + features_link: "https://docs.groupdocs.com/viewer/net/system-requirements/" + features: + # features loop + - content: ".NET Framework 4.6.2+
.NET Core 3.1
.NET 6+" + rows: "3" + # features loop + - content: "Windows, Linux" + rows: "1" + # features loop + - content: "Über 180 Dateiformate" + rows: "1" + # features loop + - content: "UI-Paket für ASP.NET Core" + rows: "1" + # features loop + - content: "ASP.NET WebForms Demo
ASP.NET MVC Demo
ASP.NET Core Demo" + rows: "3" + + # supported_platforms loop + - title: "Java" + description: "GroupDocs.Viewer for Java" + color: "red" + tag: "java" + link: "/viewer/java/" + features_link: "https://docs.groupdocs.com/viewer/java/system-requirements/" + features: + # features loop + - content: "J2SE 8.0 (1.8)+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "Über 180 Dateiformate" + rows: "1" + # features loop + - content: "UI-Paket für Spring und Dropwizard" + rows: "1" + # features loop + - content: "Spring Demo
Dropwizard demo" + rows: "3" + + # supported_platforms loop + - title: "Node.js" + description: "GroupDocs.Viewer for Node.js" + color: "green" + tag: "nodejs-java" + link: "/viewer/nodejs-java/" + features_link: "https://docs.groupdocs.com/viewer/nodejs-java/system-requirements/" + features: + # features loop + - content: "Node.js 16+
and J2SE 8.0 (1.8)+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "Über 180 Dateiformate" + rows: "1" + # features loop + - content: "UI-Paket – bald verfügbar" + rows: "1" + # features loop + - content: "Demo – bald verfügbar" + rows: "3" + + # supported_platforms loop + - title: "Python" + description: "GroupDocs.Viewer for Python" + color: "yellow" + tag: "python-net" + link: "/viewer/python-net/" + features_link: "https://docs.groupdocs.com/viewer/python-net/system-requirements/" + features: + # features loop + - content: "Python 3.9+
and .Net 6+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "Über 180 Dateiformate" + rows: "1" + # features loop + - content: "UI-Paket – bald verfügbar" + rows: "1" + # features loop + - content: "Demo – bald verfügbar" + rows: "3" + +############################# Features ############################ + +features: + enable: true + title: "Funktionsumfang von GroupDocs.Viewer" + description: "API zum Rendern von Dateien verschiedener Typen wie HTML, PDF, PNG und JPEG in Anwendungen, um sie ohne Software von Drittanbietern anzuzeigen." + + items: + # feature loop + - icon: "view" + title: "Dokumente und Bilder ansehen" + content: "Zeigen Sie Dokumente an, indem Sie sie als HTML-, PDF-, PNG- und JPEG-Dateien rendern." + + # feature loop + - icon: "password" + title: "Öffnen Sie geschützte Dokumente" + content: "Geben Sie ein Passwort an, um verschlüsselte Dokumente zu öffnen." + + # feature loop + - icon: "load" + title: "Laden Sie Dateien von überall" + content: "Laden Sie Dokumente aus verschiedenen Dateien, URLs, FTP-Servern, Amazon S3 und mehr." + + # feature loop + - icon: "pages" + title: "Rendern Sie alle oder bestimmte Seiten" + content: "Geben Sie einen Bereich von Seitenzahlen an, die gerendert werden sollen." + + +############################# Code samples ############################ +code_samples: + enable: true + title: "GroupDocs.Viewer-Codebeispiele" + description: "Einige Anwendungsfälle typischer GroupDocs.Viewer-Vorgänge in C#, Java, TypeScript" + items: + # code sample loop + - title: "So rendern Sie DOCX-Dateien in PDF" + content: | + Rendern Sie DOCX-Dokumente in PDF, ohne dass Microsoft Word oder andere Software installiert ist. Laden Sie DOCX-Dateien ganz einfach in Ihre .NET-Anwendung und zeigen Sie sie an, egal ob es sich um eine Web- oder Desktop-Anwendung handelt. Hier ist ein Beispiel für das Rendern einer DOCX-Datei in PDF: + samples: + - language: "C#" + color: "blue" + content: | + ```csharp {style=abap} + // Laden Sie die DOCX-Datei zum Rendern + using (Viewer viewer = new Viewer("sample.docx")) + { + // Rendern Sie DOCX in eine PDF-Datei + PdfViewOptions viewOptions = new PdfViewOptions(); + viewer.View(viewOptions); + } + ``` + - language: "Java" + color: "red" + content: | + ```java {style=abap} + import com.groupdocs.viewer.Viewer; + import com.groupdocs.viewer.options.PdfViewOptions; + // ... + // Laden Sie die DOCX-Datei zum Rendern + try (Viewer viewer = new Viewer("sample.docx")) { + // Rendern Sie DOCX in eine PDF-Datei + PdfViewOptions viewOptions = new PdfViewOptions(); + viewer.view(viewOptions); + } + ``` + - language: "TypeScript" + color: "green" + content: | + ```javascript {style=abap} + // Laden Sie die DOCX-Datei zum Rendern + const viewer = new groupdocs.viewer.Viewer("sample.docx") + + // Rendern Sie DOCX in eine PDF-Datei + const viewOptions = groupdocs.viewer.PdfViewOptions(output.pdf) + viewer.view(viewOptions) + ``` + + - language: "Python" + color: "yellow" + content: | + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + // Laden Sie die DOCX-Datei zum Rendern + with gv.Viewer("sample.docx") as viewer: + + // Rendern Sie DOCX in eine PDF-Datei + viewOptions = gvo.PdfViewOptions("output.pdf") + viewer.view(viewOptions) + ``` + +############################# Formats ############################ +formats: + enable: true + title: "Über 180 Dateiformate werden unterstützt" + description: "GroupDocs.Viewer unterstützt Vorgänge mit den gängigsten [Dateiformaten](https://docs.groupdocs.com/viewer/net/supported-document-formats/)" + + +############################# Metrics ############################ + +metrics: + enable: true + title: "Detaillierte Kennzahlen und statistische Erkenntnisse" + description: "Tauchen Sie ein in eine detaillierte Aufschlüsselung unserer Schlüsselzahlen und bieten Sie umfassende Kennzahlen und statistische Einblicke in unsere Erfolge, Auswirkungen und unser Wachstum." + + items: + # metrics loop + - number: "180+" + title: "Unterstützte Formate" + content: "Sehen Sie sich problemlos über 180 Dateiformate an, darunter Dokumente, Bilder und CAD-Zeichnungen. Überwinden Sie Kompatibilitätsbarrieren und greifen Sie mit unserer umfassenden Anzeigelösung mühelos auf verschiedene Dateien zu." + # metrics loop + - number: "1.0M" + title: "NuGet-Downloads" + content: "Unsere NuGet-Paketlösung hat sich zu einer vertrauenswürdigen und weit verbreiteten Ressource in der Entwicklergemeinschaft entwickelt und bietet nahtlose Integration und wertvolle Funktionalität für unzählige Projekte." + + # metrics loop + - number: "10+" + title: "Bibliotheken" + content: "Unser Produkt umfasst mehr als 10 Bibliotheken und bietet erweiterte Funktionen zur Optimierung der Leistung. Diese Bibliotheken sind darauf ausgelegt, unterschiedliche Entwicklungsanforderungen mit beispiellosen Fähigkeiten zu erfüllen." + + # metrics loop + - number: "100+" + title: "Zufriedene Kunden" + content: "Wir beliefern die bekanntesten Marken rund um den Globus. Entdecken Sie, warum Hunderte GroupDocs.Viewer lieben! Entdecken Sie nahtlose Navigation, bequeme Zusammenarbeit und beispiellose Benutzerfreundlichkeit. Jetzt beitreten!" + + +############################# Customers ############################ +# logo size X1 => 170:70 X2 => 340 : 140 + +customers: + enable: true + title: "Unsere zufriedenen Kunden" + description: "GroupDocs-Bibliotheken werden von weltweit bekannten und angesehenen Marken auf der ganzen Welt eingesetzt." + + items: + # customers loop + - title: "BenQ Corporation" + logo: "benq" + # customers loop + - title: "Nasdaq Stock Market" + logo: "nasdaq" + # customers loop + - title: "AT&T Inc." + logo: "att" + # customers loop + - title: "AstraZeneca" + logo: "astrazeneca" + # customers loop + - title: "Central Bank of Argentina" + logo: "argentinacentralbank" + # customers loop + - title: "Roche Holding AG" + logo: "roche" + # customers loop + - title: "Capita" + logo: "capita" + # customers loop + - title: "Axa S.A." + logo: "axa" + # customers loop + - title: "Instructure Inc." + logo: "instructure" + # customers loop + - title: "Wipro" + logo: "wipro" + + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + + items: + # loop + - title: ".NET" + link: "/viewer/net/" + color: "blue" + # loop + - title: "Java" + link: "/viewer/java/" + color: "red" + # loop + - title: "Node.js" + link: "/viewer/nodejs-java/" + color: "green" + # loop + - title: "Python" + link: "/viewer/python-net/" + color: "yellow" + +############################# Faq ############################ + +faq: + enable: true + title: "Häufige Fragen und Bedenken" + description: "In unserem FAQ-Bereich finden Sie Antworten auf häufig gestellte Fragen, um schnell auf Ihre Fragen und Bedenken einzugehen." + + items: + # loop + - question: "Kann ich GroupDocs-Produkte vor dem Kauf testen?" + answer: | + Ja! Für alle GroupDocs-Produkte ist eine risikofreie Testversion verfügbar. Wir empfehlen Entwicklern dringend, unsere APIs vor dem Kauf herunterzuladen und auszuprobieren, um sicherzustellen, dass sie Ihre Anforderungen zu 100 % erfüllen. + # loop + - question: "Führt GroupDocs Produktvorführungen durch?" + answer: | + Nein, unser Fokus liegt auf unseren APIs und der Herstellung möglichst funktionaler und stabiler Produkte. Wir bieten voll funktionsfähige und kostenlose Testversionen in Form einer [temporären Lizenz](https://purchase.groupdocs.com/temporary-license/) an, damit Sie das Produkt selbst testen können. + # loop + - question: "Wo kann ich das Produkt herunterladen?" + answer: | + Alle Produkte können von der [Website](https://releases.groupdocs.com) heruntergeladen werden. Wir versenden keine physischen Kopien unserer Software per Post. + # loop + - question: "Gelten GroupDocs-Entwicklerlizenzen pro Benutzer oder pro benanntem Benutzer?" + answer: | + GroupDocs Developer-Lizenzen gelten pro Benutzer, nicht pro benanntem Benutzer. Wir verstehen, dass sich die Mitglieder eines Codierungsteams im Laufe der Zeit ändern können und dass es nicht praktikabel ist, die Lizenz jedes Mal aktualisieren zu müssen. + # loop + - question: "Benötigen wir eine Lizenz nur für aktive Entwickler? Wir haben zum Beispiel ein Team aus zwei Entwicklern, die in Schicht A arbeiten, und ein zweites Team aus zwei Entwicklern, die in Schicht B arbeiten. Brauchen wir in dieser Situation zwei oder vier Lizenzen?" + answer: | + Alle Entwickler, die an dem Projekt arbeiten, müssen lizenziert sein. In dieser Situation geht GroupDocs davon aus, dass Ihr Team aus vier Mitgliedern besteht (auch wenn diese zu unterschiedlichen Zeiten arbeiten). + +############################# Cloud ############################ + +cloud_links: + enable: true + title: "GroupDocs.Viewer Low-Code-APIs" + description: "Beschleunigen Sie die Anzeige von Dokumenten oder Bildern in jeder Art von Anwendung mit unserer cloudbasierten REST-API" + + items: + # loop + - icon: "groupdocs_viewer-for-curl" + title: "GroupDocs.Viewer Cloud for cURL" + link: "https://products.groupdocs.cloud/viewer/curl" + content: "Verwenden Sie die cURL RESTful Document Viewer-API, um Microsoft Office, PDF und verschiedene andere Standarddateiformate in Ihren Anwendungen effizient darzustellen und darzustellen." + + # loop + - icon: "groupdocs_viewer-for-net" + title: "GroupDocs.Viewer Cloud for .NET" + link: "https://products.groupdocs.cloud/viewer/net" + content: "Verbessern Sie die Anzeigefunktionen für Dokumente in .NET-Anwendungen mit dem Cloud SDK für .NET. Zeigen Sie Dokumente nahtlos in den Formaten HTML, PDF oder Bild an." + # loop + - icon: "groupdocs_viewer-for-java" + title: "GroupDocs.Viewer Cloud for Java" + link: "https://products.groupdocs.cloud/viewer/java" + content: "Integrieren Sie erweiterte Dokument-Rendering-Funktionen in Ihre Java-Anwendungen mit einem speziell entwickelten Document Viewer SDK für Java." + +############################# Apps ############################ + +app_links: + enable: true + title: "GroupDocs.Viewer NoCode-Apps" + description: "Online-Anwendung, mit der Sie über 180 gängige Dateiformate im Browser anzeigen können" + + items: + # loop + - icon: "groupdocs_viewer-app" + title: "GroupDocs.Viewer Total" + link: "https://products.groupdocs.app/viewer/total" + content: "Entdecken Sie eine kostenlose Online-Anwendung, um über 180 Dateiformate direkt in Ihrem bevorzugten Webbrowser anzuzeigen." + + # loop + - icon: "groupdocs_words-app" + title: "GroupDocs.Viewer DOCX" + link: "https://products.groupdocs.app/viewer/docx" + content: "Webbasiertes Tool zum mühelosen Anzeigen von Microsoft Word-Dateien auf verschiedenen Geräten." + + # loop + - icon: "groupdocs_pdf-app" + title: "GroupDocs.Viewer PDF" + link: "https://products.groupdocs.app/viewer/pdf" + content: "Öffnen und betrachten Sie PDF-Dateien online mit dem kostenlosen PDF-Viewer." + + +--- \ No newline at end of file diff --git a/content/viewer/_index.en.md b/content/viewer/_index.en.md new file mode 100644 index 00000000..d36e9745 --- /dev/null +++ b/content/viewer/_index.en.md @@ -0,0 +1,402 @@ +--- +############################# Static ########################## +layout: "family" +date: 2023-12-20T06:39:57 +draft: false + +product: "Viewer" +product_tag: "viewer" + +############################# Head ############################ +head_title: "Render and View Documents API | On Premise API and online service" +head_description: "Render & view Word, PDF, Excel, Powerpoint or Image files easily and free" + +############################# Header ########################## +title: "Render and view documents with ease" +description: | + Powerful Viewer API to Render different files to PDF, HTML, and Image. + + Load documents from various sources, including files, streams, URLs, FTP servers, Amazon S3, Azure Blob Storage, and more. + + Generate responsive HTML pages, protect the output PDF files and reorder their pages, rotate pages, render notes and comments if needed. + +############################# Platforms ############################ +supported_platforms: + enable: true + head_title: "Choose your platform" + title: "Supported platforms" + description: "GroupDocs.Viewer library supports the following operating systems and frameworks" + details_link_title: "Learn more" + items: + # supported_platforms loop + - title: ".NET" + description: "GroupDocs.Viewer for .NET" + color: "blue" + tag: "net" + link: "/viewer/net/" + features_link: "https://docs.groupdocs.com/viewer/net/system-requirements/" + features: + # features loop + - content: ".NET Framework 4.6.2+
.NET Core 3.1
.NET 6+" + rows: "3" + # features loop + - content: "Windows, Linux" + rows: "1" + # features loop + - content: "180+ file formats" + rows: "1" + # features loop + - content: "UI package for ASP.NET Core" + rows: "1" + # features loop + - content: "ASP.NET WebForms Demo
ASP.NET MVC Demo
ASP.NET Core Demo" + rows: "3" + + # supported_platforms loop + - title: "Java" + description: "GroupDocs.Viewer for Java" + color: "red" + tag: "java" + link: "/viewer/java/" + features_link: "https://docs.groupdocs.com/viewer/java/system-requirements/" + features: + # features loop + - content: "J2SE 8.0 (1.8)+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "180+ file formats" + rows: "1" + # features loop + - content: "UI package for Spring and Dropwizard" + rows: "1" + # features loop + - content: "Spring Demo
Dropwizard demo" + rows: "3" + + # supported_platforms loop + - title: "Node.js" + description: "GroupDocs.Viewer for Node.js" + color: "green" + tag: "nodejs-java" + link: "/viewer/nodejs-java/" + features_link: "https://docs.groupdocs.com/viewer/nodejs-java/system-requirements/" + features: + # features loop + - content: "Node.js 16+
and J2SE 8.0 (1.8)+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "180+ file formats" + rows: "1" + # features loop + - content: "UI package - coming soon" + rows: "1" + # features loop + - content: "Demo - coming soon" + rows: "3" + + # supported_platforms loop + - title: "Python" + description: "GroupDocs.Viewer for Python" + color: "yellow" + tag: "python-net" + link: "/viewer/python-net/" + features_link: "https://docs.groupdocs.com/viewer/python-net/system-requirements/" + features: + # features loop + - content: "Python 3.9+
and .Net 6+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "180+ file formats" + rows: "1" + # features loop + - content: "UI package - coming soon" + rows: "1" + # features loop + - content: "Demo - coming soon" + rows: "3" + +############################# Features ############################ + +features: + enable: true + title: "GroupDocs.Viewer's feature set" + description: "API to render files of different types as HTML, PDF, PNG, and JPEG in applications to view them without third-party software." + + items: + # feature loop + - icon: "view" + title: "View documents and images" + content: "View documents by rendering them as HTML, PDF, PNG, and JPEG files." + + # feature loop + - icon: "password" + title: "Open secured documents" + content: "Specify a password to open encrypted documents." + + # feature loop + - icon: "load" + title: "Load files from anywhere" + content: "Load documents from various files, URLs, FTP servers, Amazon S3, and more." + + # feature loop + - icon: "pages" + title: "Render all or specific pages" + content: "Specify a range of page numbers to be rendered." + + +############################# Code samples ############################ +code_samples: + enable: true + title: "GroupDocs.Viewer code samples" + description: "Some use cases of typical GroupDocs.Viewer operations in C#, Java, TypeScript" + items: + # code sample loop + - title: "How to render DOCX files to PDF" + content: | + Render DOCX documents to PDF without Microsoft Word or other software installed. Easily load and view DOCX files within your .NET application, whether it is a web or desktop application. Here is an example of how to render a DOCX file to PDF: + samples: + - language: "C#" + color: "blue" + content: | + ```csharp {style=abap} + // Load DOCX file to render + using (Viewer viewer = new Viewer("sample.docx")) + { + // Render DOCX to a PDF file + PdfViewOptions viewOptions = new PdfViewOptions(); + viewer.View(viewOptions); + } + ``` + - language: "Java" + color: "red" + content: | + ```java {style=abap} + import com.groupdocs.viewer.Viewer; + import com.groupdocs.viewer.options.PdfViewOptions; + // ... + // Load DOCX file to render + try (Viewer viewer = new Viewer("sample.docx")) { + // Render DOCX to a PDF file + PdfViewOptions viewOptions = new PdfViewOptions(); + viewer.view(viewOptions); + } + ``` + - language: "TypeScript" + color: "green" + content: | + ```javascript {style=abap} + // Load DOCX file to render + const viewer = new groupdocs.viewer.Viewer("sample.docx") + + // Render DOCX to a PDF file + const viewOptions = groupdocs.viewer.PdfViewOptions(output.pdf) + viewer.view(viewOptions) + ``` + + - language: "Python" + color: "yellow" + content: | + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + // Load DOCX file to render + with gv.Viewer("sample.docx") as viewer: + + // Render DOCX to a PDF file + viewOptions = gvo.PdfViewOptions("output.pdf") + viewer.view(viewOptions) + ``` + +############################# Formats ############################ +formats: + enable: true + title: "180+ file formats supported" + description: "GroupDocs.Viewer supports operations with the most popular [file formats](https://docs.groupdocs.com/viewer/net/supported-document-formats/)" + + +############################# Metrics ############################ + +metrics: + enable: true + title: "In-depth metrics and statistical insights" + description: "Dive into a detailed breakdown of our key figures, providing comprehensive metrics and statistical insights into our achievements, impact, and growth." + + items: + # metrics loop + - number: "180+" + title: "Supported formats" + content: "Easily view over 180 file formats including documents, images, and CAD drawings hassle-free. Break compatibility barriers and access diverse files effortlessly with our comprehensive viewing solution." + # metrics loop + - number: "1.0M" + title: "NuGet downloads" + content: "Our NuGet package solution has become a trusted and widely adopted resource in the developer community, providing seamless integration and valuable functionality for countless projects." + + # metrics loop + - number: "10+" + title: "Libraries" + content: "Our product includes 10+ libraries, offering advanced features to optimize performance. These libraries are designed to fulfill different development needs with unparalleled capabilities." + + # metrics loop + - number: "100+" + title: "Happy customers" + content: "Serving the most iconic brands around the globe. Discover why hundreds love GroupDocs.Viewer! Explore seamless navigation, convenient collaboration, and unparalleled ease of use. Join now!" + + +############################# Customers ############################ +# logo size X1 => 170:70 X2 => 340 : 140 + +customers: + enable: true + title: "Our happy customers" + description: "GroupDocs libraries are employed by globally renowned and distinguished brands across the world." + + items: + # customers loop + - title: "BenQ Corporation" + logo: "benq" + # customers loop + - title: "Nasdaq Stock Market" + logo: "nasdaq" + # customers loop + - title: "AT&T Inc." + logo: "att" + # customers loop + - title: "AstraZeneca" + logo: "astrazeneca" + # customers loop + - title: "Central Bank of Argentina" + logo: "argentinacentralbank" + # customers loop + - title: "Roche Holding AG" + logo: "roche" + # customers loop + - title: "Capita" + logo: "capita" + # customers loop + - title: "Axa S.A." + logo: "axa" + # customers loop + - title: "Instructure Inc." + logo: "instructure" + # customers loop + - title: "Wipro" + logo: "wipro" + + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + + items: + # loop + - title: ".NET" + link: "/viewer/net/" + color: "blue" + # loop + - title: "Java" + link: "/viewer/java/" + color: "red" + # loop + - title: "Node.js" + link: "/viewer/nodejs-java/" + color: "green" + # loop + - title: "Python" + link: "/viewer/python-net/" + color: "yellow" + +############################# Faq ############################ + +faq: + enable: true + title: "Common questions and concerns" + description: "Find answers to common inquiries in our FAQ section to quickly address your queries and concerns." + + items: + # loop + - question: "Can I evaluate GroupDocs products prior to purchasing?" + answer: | + Yes! All GroupDocs products have a risk-free, evaluation version available. We strongly encourage developers to download and try our APIs before purchasing to ensure that they will fill your needs 100%. + # loop + - question: "Does GroupDocs do product demonstrations?" + answer: | + No, our focus is on our APIs and making the most functional and stable products possible. We do offer fully functional and free trials in the form of a [temporary license](https://purchase.groupdocs.com/temporary-license/) so you can test out the product for yourself. + # loop + - question: "Where can I download the product?" + answer: | + All products are available to download from the [website](https://releases.groupdocs.com). We do not send physical copies of our software by mail. + # loop + - question: "Are GroupDocs developer licenses per user, or per named user?" + answer: | + GroupDocs Developer licenses are per user, not per named user. We understand that members of a coding team may change over time and that it is not practical to have to update licensing each time that occurs. + # loop + - question: "Do we need licensing for only active developers? For example, we have a team of two developers working on shift A and a second team of two developers working on shift B … in this situation, do we need two or four licenses?" + answer: | + All developers who are working on the project need to be licensed. In this situation, GroupDocs sees your team as having four members (even though they work at different times). + +############################# Cloud ############################ + +cloud_links: + enable: true + title: "GroupDocs.Viewer low code APIs" + description: "Accelerate document or image viewing in any type of application with our cloud-based REST API" + + items: + # loop + - icon: "groupdocs_viewer-for-curl" + title: "GroupDocs.Viewer Cloud for cURL" + link: "https://products.groupdocs.cloud/viewer/curl" + content: "Use the cURL RESTful document viewer API to efficiently render and showcase Microsoft Office, PDF, and various other standard file formats in your applications." + + # loop + - icon: "groupdocs_viewer-for-net" + title: "GroupDocs.Viewer Cloud for .NET" + link: "https://products.groupdocs.cloud/viewer/net" + content: "Enhance document viewing capabilities in .NET applications with Cloud SDK for .NET. View documents seamlessly in HTML, PDF, or image formats." + # loop + - icon: "groupdocs_viewer-for-java" + title: "GroupDocs.Viewer Cloud for Java" + link: "https://products.groupdocs.cloud/viewer/java" + content: "Integrate advanced document rendering capabilities into your Java applications using a purpose-built Document Viewer SDK for Java." + +############################# Apps ############################ + +app_links: + enable: true + title: "GroupDocs.Viewer NoCode apps" + description: "Online application allowing you to view 180+ popular file formats in browser" + + items: + # loop + - icon: "groupdocs_viewer-app" + title: "GroupDocs.Viewer Total" + link: "https://products.groupdocs.app/viewer/total" + content: "Explore a free online application to view over 180 file formats directly from your preferred web browser." + + # loop + - icon: "groupdocs_words-app" + title: "GroupDocs.Viewer DOCX" + link: "https://products.groupdocs.app/viewer/docx" + content: "Web-based tool for viewing Microsoft Word files effortlessly across various devices." + + # loop + - icon: "groupdocs_pdf-app" + title: "GroupDocs.Viewer PDF" + link: "https://products.groupdocs.app/viewer/pdf" + content: "Open and view PDF files online with free PDF viewer." + + +--- \ No newline at end of file diff --git a/content/viewer/_index.es.md b/content/viewer/_index.es.md new file mode 100644 index 00000000..cfb738fc --- /dev/null +++ b/content/viewer/_index.es.md @@ -0,0 +1,402 @@ +--- +############################# Static ########################## +layout: "family" +date: 2023-12-20T06:39:57 +draft: false + +product: "Viewer" +product_tag: "viewer" + +############################# Head ############################ +head_title: "API de renderizado y visualización de documentos | API local y servicio en línea" +head_description: "Renderice y vea archivos de Word, PDF, Excel, Powerpoint o imágenes de forma fácil y gratuita" + +############################# Header ########################## +title: "Renderice y vea documentos con facilidad" +description: | + Potente API de visor para renderizar diferentes archivos a PDF, HTML e imágenes. + + Cargue documentos de diversas fuentes, incluidos archivos, secuencias, URL, servidores FTP, Amazon S3, Azure Blob Storage y más. + + Genere páginas HTML responsivas, proteja los archivos PDF de salida y reordene sus páginas, rote páginas, renderice notas y comentarios si es necesario. + +############################# Platforms ############################ +supported_platforms: + enable: true + head_title: "Elige tu plataforma" + title: "Plataformas compatibles" + description: "La biblioteca GroupDocs.Viewer admite los siguientes sistemas operativos y marcos" + details_link_title: "Aprende más" + items: + # supported_platforms loop + - title: ".NET" + description: "GroupDocs.Viewer for .NET" + color: "blue" + tag: "net" + link: "/viewer/net/" + features_link: "https://docs.groupdocs.com/viewer/net/system-requirements/" + features: + # features loop + - content: ".NET Framework 4.6.2+
.NET Core 3.1
.NET 6+" + rows: "3" + # features loop + - content: "Windows, Linux" + rows: "1" + # features loop + - content: "Más de 180 formatos de archivo" + rows: "1" + # features loop + - content: "Paquete de interfaz de usuario para ASP.NET Core" + rows: "1" + # features loop + - content: "ASP.NET WebForms Demo
ASP.NET MVC Demo
ASP.NET Core Demo" + rows: "3" + + # supported_platforms loop + - title: "Java" + description: "GroupDocs.Viewer for Java" + color: "red" + tag: "java" + link: "/viewer/java/" + features_link: "https://docs.groupdocs.com/viewer/java/system-requirements/" + features: + # features loop + - content: "J2SE 8.0 (1.8)+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "Más de 180 formatos de archivo" + rows: "1" + # features loop + - content: "Paquete de interfaz de usuario para Spring y Dropwizard" + rows: "1" + # features loop + - content: "Spring Demo
Dropwizard demo" + rows: "3" + + # supported_platforms loop + - title: "Node.js" + description: "GroupDocs.Viewer for Node.js" + color: "green" + tag: "nodejs-java" + link: "/viewer/nodejs-java/" + features_link: "https://docs.groupdocs.com/viewer/nodejs-java/system-requirements/" + features: + # features loop + - content: "Node.js 16+
and J2SE 8.0 (1.8)+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "Más de 180 formatos de archivo" + rows: "1" + # features loop + - content: "Paquete de interfaz de usuario: próximamente" + rows: "1" + # features loop + - content: "Demostración: próximamente" + rows: "3" + + # supported_platforms loop + - title: "Python" + description: "GroupDocs.Viewer for Python" + color: "yellow" + tag: "python-net" + link: "/viewer/python-net/" + features_link: "https://docs.groupdocs.com/viewer/python-net/system-requirements/" + features: + # features loop + - content: "Python 3.9+
and .Net 6+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "Más de 180 formatos de archivo" + rows: "1" + # features loop + - content: "Paquete de interfaz de usuario: próximamente" + rows: "1" + # features loop + - content: "Demostración: próximamente" + rows: "3" + +############################# Features ############################ + +features: + enable: true + title: "Conjunto de funciones de GroupDocs.Viewer" + description: "API para renderizar archivos de diferentes tipos como HTML, PDF, PNG y JPEG en aplicaciones para verlos sin software de terceros." + + items: + # feature loop + - icon: "view" + title: "Ver documentos e imágenes." + content: "Vea documentos representándolos como archivos HTML, PDF, PNG y JPEG." + + # feature loop + - icon: "password" + title: "Abrir documentos seguros" + content: "Especifique una contraseña para abrir documentos cifrados." + + # feature loop + - icon: "load" + title: "Cargue archivos desde cualquier lugar" + content: "Cargue documentos desde varios archivos, URL, servidores FTP, Amazon S3 y más." + + # feature loop + - icon: "pages" + title: "Renderizar todas o páginas específicas" + content: "Especifique un rango de números de página que se representarán." + + +############################# Code samples ############################ +code_samples: + enable: true + title: "Ejemplos de código de GroupDocs.Viewer" + description: "Algunos casos de uso de operaciones típicas de GroupDocs.Viewer en C#, Java, TypeScript" + items: + # code sample loop + - title: "Cómo renderizar archivos DOCX a PDF" + content: | + Renderice documentos DOCX a PDF sin Microsoft Word u otro software instalado. Cargue y vea fácilmente archivos DOCX dentro de su aplicación .NET, ya sea una aplicación web o de escritorio. A continuación se muestra un ejemplo de cómo convertir un archivo DOCX a PDF: + samples: + - language: "C#" + color: "blue" + content: | + ```csharp {style=abap} + // Cargue el archivo DOCX para renderizar + using (Viewer viewer = new Viewer("sample.docx")) + { + // Renderizar DOCX a un archivo PDF + PdfViewOptions viewOptions = new PdfViewOptions(); + viewer.View(viewOptions); + } + ``` + - language: "Java" + color: "red" + content: | + ```java {style=abap} + import com.groupdocs.viewer.Viewer; + import com.groupdocs.viewer.options.PdfViewOptions; + // ... + // Cargue el archivo DOCX para renderizar + try (Viewer viewer = new Viewer("sample.docx")) { + // Renderizar DOCX a un archivo PDF + PdfViewOptions viewOptions = new PdfViewOptions(); + viewer.view(viewOptions); + } + ``` + - language: "TypeScript" + color: "green" + content: | + ```javascript {style=abap} + // Cargue el archivo DOCX para renderizar + const viewer = new groupdocs.viewer.Viewer("sample.docx") + + // Renderizar DOCX a un archivo PDF + const viewOptions = groupdocs.viewer.PdfViewOptions(output.pdf) + viewer.view(viewOptions) + ``` + + - language: "Python" + color: "yellow" + content: | + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + // Cargue el archivo DOCX para renderizar + with gv.Viewer("sample.docx") as viewer: + + // Renderizar DOCX a un archivo PDF + viewOptions = gvo.PdfViewOptions("output.pdf") + viewer.view(viewOptions) + ``` + +############################# Formats ############################ +formats: + enable: true + title: "Más de 180 formatos de archivo compatibles" + description: "GroupDocs.Viewer admite operaciones con los más populares [formatos de archivo](https://docs.groupdocs.com/viewer/net/supported-document-formats/)" + + +############################# Metrics ############################ + +metrics: + enable: true + title: "Métricas detalladas y conocimientos estadísticos" + description: "Sumérgete en un desglose detallado de nuestras cifras clave, proporcionando métricas completas y conocimientos estadísticos sobre nuestros logros, impacto y crecimiento." + + items: + # metrics loop + - number: "180+" + title: "Formatos soportados" + content: "Vea fácilmente más de 180 formatos de archivos, incluidos documentos, imágenes y dibujos CAD, sin complicaciones. Rompe las barreras de compatibilidad y accede a diversos archivos sin esfuerzo con nuestra solución de visualización integral." + # metrics loop + - number: "1.0M" + title: "Descargas NuGet" + content: "Nuestra solución de paquete NuGet se ha convertido en un recurso confiable y ampliamente adoptado en la comunidad de desarrolladores, brindando una integración perfecta y una funcionalidad valiosa para innumerables proyectos." + + # metrics loop + - number: "10+" + title: "Bibliotecas" + content: "Nuestro producto incluye más de 10 bibliotecas que ofrecen funciones avanzadas para optimizar el rendimiento. Estas bibliotecas están diseñadas para satisfacer diferentes necesidades de desarrollo con capacidades incomparables." + + # metrics loop + - number: "100+" + title: "Clientes felices" + content: "Sirviendo a las marcas más emblemáticas de todo el mundo. ¡Descubra por qué a cientos de personas les encanta GroupDocs.Viewer! Explore una navegación fluida, una colaboración cómoda y una facilidad de uso incomparable. ¡Únete ahora!" + + +############################# Customers ############################ +# logo size X1 => 170:70 X2 => 340 : 140 + +customers: + enable: true + title: "Nuestros clientes felices" + description: "Las bibliotecas de GroupDocs son utilizadas por marcas distinguidas y reconocidas a nivel mundial en todo el mundo." + + items: + # customers loop + - title: "BenQ Corporation" + logo: "benq" + # customers loop + - title: "Nasdaq Stock Market" + logo: "nasdaq" + # customers loop + - title: "AT&T Inc." + logo: "att" + # customers loop + - title: "AstraZeneca" + logo: "astrazeneca" + # customers loop + - title: "Central Bank of Argentina" + logo: "argentinacentralbank" + # customers loop + - title: "Roche Holding AG" + logo: "roche" + # customers loop + - title: "Capita" + logo: "capita" + # customers loop + - title: "Axa S.A." + logo: "axa" + # customers loop + - title: "Instructure Inc." + logo: "instructure" + # customers loop + - title: "Wipro" + logo: "wipro" + + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + + items: + # loop + - title: ".NET" + link: "/viewer/net/" + color: "blue" + # loop + - title: "Java" + link: "/viewer/java/" + color: "red" + # loop + - title: "Node.js" + link: "/viewer/nodejs-java/" + color: "green" + # loop + - title: "Python" + link: "/viewer/python-net/" + color: "yellow" + +############################# Faq ############################ + +faq: + enable: true + title: "Preguntas e inquietudes comunes" + description: "Encuentre respuestas a consultas comunes en nuestra sección de preguntas frecuentes para abordar rápidamente sus consultas e inquietudes." + + items: + # loop + - question: "¿Puedo evaluar los productos de GroupDocs antes de comprarlos?" + answer: | + ¡Sí! Todos los productos GroupDocs tienen disponible una versión de evaluación sin riesgos. Recomendamos encarecidamente a los desarrolladores que descarguen y prueben nuestras API antes de comprarlas para asegurarse de que satisfarán sus necesidades al 100%. + # loop + - question: "¿GroupDocs realiza demostraciones de productos?" + answer: | + No, nuestro enfoque está en nuestras API y en hacer los productos más funcionales y estables posibles. Ofrecemos pruebas totalmente funcionales y gratuitas en forma de [licencia temporal](https://purchase.groupdocs.com/temporary-license/) para que pueda probar el producto usted mismo. + # loop + - question: "¿Dónde puedo descargar el producto?" + answer: | + Todos los productos están disponibles para descargar desde el [sitio web](https://releases.groupdocs.com). No enviamos copias físicas de nuestro software por correo. + # loop + - question: "¿Las licencias de desarrollador de GroupDocs son por usuario o por usuario designado?" + answer: | + Las licencias de GroupDocs Developer son por usuario, no por usuario designado. Entendemos que los miembros de un equipo de codificación pueden cambiar con el tiempo y que no es práctico tener que actualizar las licencias cada vez que esto ocurre. + # loop + - question: "¿Necesitamos licencias sólo para desarrolladores activos? Por ejemplo, tenemos un equipo de dos desarrolladores trabajando en el turno A y un segundo equipo de dos desarrolladores trabajando en el turno B… en esta situación, ¿necesitamos dos o cuatro licencias?" + answer: | + Todos los desarrolladores que estén trabajando en el proyecto deben tener una licencia. En esta situación, GroupDocs considera que su equipo tiene cuatro miembros (aunque trabajen en momentos diferentes). + +############################# Cloud ############################ + +cloud_links: + enable: true + title: "API de código bajo de GroupDocs.Viewer" + description: "Acelere la visualización de documentos o imágenes en cualquier tipo de aplicación con nuestra API REST basada en la nube" + + items: + # loop + - icon: "groupdocs_viewer-for-curl" + title: "GroupDocs.Viewer Cloud for cURL" + link: "https://products.groupdocs.cloud/viewer/curl" + content: "Utilice la API del visor de documentos cURL RESTful para representar y mostrar de manera eficiente Microsoft Office, PDF y varios otros formatos de archivos estándar en sus aplicaciones." + + # loop + - icon: "groupdocs_viewer-for-net" + title: "GroupDocs.Viewer Cloud for .NET" + link: "https://products.groupdocs.cloud/viewer/net" + content: "Mejore las capacidades de visualización de documentos en aplicaciones .NET con Cloud SDK para .NET. Vea documentos sin problemas en formatos HTML, PDF o imagen." + # loop + - icon: "groupdocs_viewer-for-java" + title: "GroupDocs.Viewer Cloud for Java" + link: "https://products.groupdocs.cloud/viewer/java" + content: "Integre capacidades avanzadas de representación de documentos en sus aplicaciones Java utilizando un SDK de visor de documentos para Java especialmente diseñado." + +############################# Apps ############################ + +app_links: + enable: true + title: "Aplicaciones GroupDocs.Viewer NoCode" + description: "Aplicación en línea que le permite ver más de 180 formatos de archivos populares en el navegador" + + items: + # loop + - icon: "groupdocs_viewer-app" + title: "GroupDocs.Viewer Total" + link: "https://products.groupdocs.app/viewer/total" + content: "Explore una aplicación en línea gratuita para ver más de 180 formatos de archivos directamente desde su navegador web preferido." + + # loop + - icon: "groupdocs_words-app" + title: "GroupDocs.Viewer DOCX" + link: "https://products.groupdocs.app/viewer/docx" + content: "Herramienta basada en web para ver archivos de Microsoft Word sin esfuerzo en varios dispositivos." + + # loop + - icon: "groupdocs_pdf-app" + title: "GroupDocs.Viewer PDF" + link: "https://products.groupdocs.app/viewer/pdf" + content: "Abra y vea archivos PDF en línea con el visor de PDF gratuito." + + +--- \ No newline at end of file diff --git a/content/viewer/_index.fa.md b/content/viewer/_index.fa.md new file mode 100644 index 00000000..1f891013 --- /dev/null +++ b/content/viewer/_index.fa.md @@ -0,0 +1,402 @@ +--- +############################# Static ########################## +layout: "family" +date: 2023-12-20T06:39:57 +draft: false + +product: "Viewer" +product_tag: "viewer" + +############################# Head ############################ +head_title: "API رندر و مشاهده اسناد | در Premise API و سرویس آنلاین" +head_description: "رندر و مشاهده فایل های Word، PDF، Excel، Powerpoint یا Image به راحتی و رایگان" + +############################# Header ########################## +title: "اسناد را به راحتی رندر و مشاهده کنید" +description: | + API نمایشگر قدرتمند برای ارائه فایل های مختلف به PDF، HTML و Image. + + اسناد را از منابع مختلف بارگیری کنید، از جمله فایل ها، جریان ها، URL ها، سرورهای FTP، Amazon S3، Azure Blob Storage و موارد دیگر. + + صفحات HTML پاسخگو ایجاد کنید، از فایل های PDF خروجی محافظت کنید و صفحات آنها را مجددا مرتب کنید، صفحات را بچرخانید، یادداشت ها و نظرات را در صورت نیاز ارائه دهید. + +############################# Platforms ############################ +supported_platforms: + enable: true + head_title: "پلتفرم خود را انتخاب کنید" + title: "پلتفرم های پشتیبانی شده" + description: "کتابخانه GroupDocs.Viewer از سیستم عامل ها و چارچوب های زیر پشتیبانی می کند" + details_link_title: "بیشتر بدانید" + items: + # supported_platforms loop + - title: ".NET" + description: "GroupDocs.Viewer for .NET" + color: "blue" + tag: "net" + link: "/viewer/net/" + features_link: "https://docs.groupdocs.com/viewer/net/system-requirements/" + features: + # features loop + - content: ".NET Framework 4.6.2+
.NET Core 3.1
.NET 6+" + rows: "3" + # features loop + - content: "Windows, Linux" + rows: "1" + # features loop + - content: "بیش از 180 فرمت فایل" + rows: "1" + # features loop + - content: "بسته UI برای ASP.NET Core" + rows: "1" + # features loop + - content: "ASP.NET WebForms Demo
ASP.NET MVC Demo
ASP.NET Core Demo" + rows: "3" + + # supported_platforms loop + - title: "Java" + description: "GroupDocs.Viewer for Java" + color: "red" + tag: "java" + link: "/viewer/java/" + features_link: "https://docs.groupdocs.com/viewer/java/system-requirements/" + features: + # features loop + - content: "J2SE 8.0 (1.8)+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "بیش از 180 فرمت فایل" + rows: "1" + # features loop + - content: "بسته UI برای Spring و Dropwizard" + rows: "1" + # features loop + - content: "Spring Demo
Dropwizard demo" + rows: "3" + + # supported_platforms loop + - title: "Node.js" + description: "GroupDocs.Viewer for Node.js" + color: "green" + tag: "nodejs-java" + link: "/viewer/nodejs-java/" + features_link: "https://docs.groupdocs.com/viewer/nodejs-java/system-requirements/" + features: + # features loop + - content: "Node.js 16+
and J2SE 8.0 (1.8)+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "بیش از 180 فرمت فایل" + rows: "1" + # features loop + - content: "بسته UI - به زودی" + rows: "1" + # features loop + - content: "نسخه ی نمایشی - به زودی" + rows: "3" + + # supported_platforms loop + - title: "Python" + description: "GroupDocs.Viewer for Python" + color: "yellow" + tag: "python-net" + link: "/viewer/python-net/" + features_link: "https://docs.groupdocs.com/viewer/python-net/system-requirements/" + features: + # features loop + - content: "Python 3.9+
and .Net 6+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "بیش از 180 فرمت فایل" + rows: "1" + # features loop + - content: "بسته UI - به زودی" + rows: "1" + # features loop + - content: "نسخه ی نمایشی - به زودی" + rows: "3" + +############################# Features ############################ + +features: + enable: true + title: "مجموعه ویژگی های GroupDocs.Viewer" + description: "API برای ارائه فایل‌های مختلف به‌عنوان HTML، PDF، PNG و JPEG در برنامه‌ها برای مشاهده آنها بدون نرم‌افزار شخص ثالث." + + items: + # feature loop + - icon: "view" + title: "مشاهده اسناد و تصاویر" + content: "اسناد را با رندر کردن آنها به صورت فایل های HTML، PDF، PNG و JPEG مشاهده کنید." + + # feature loop + - icon: "password" + title: "اسناد ایمن را باز کنید" + content: "رمز عبور را برای باز کردن اسناد رمزگذاری شده مشخص کنید." + + # feature loop + - icon: "load" + title: "فایل ها را از هر کجا بارگیری کنید" + content: "اسناد را از فایل های مختلف، URL ها، سرورهای FTP، Amazon S3 و موارد دیگر بارگیری کنید." + + # feature loop + - icon: "pages" + title: "همه یا صفحات خاص را رندر کنید" + content: "محدوده‌ای از شماره‌های صفحه را برای ارائه مشخص کنید." + + +############################# Code samples ############################ +code_samples: + enable: true + title: "نمونه کد GroupDocs.Viewer" + description: "برخی از موارد از عملیات معمولی GroupDocs.Viewer در C#، Java، TypeScript استفاده می کنند" + items: + # code sample loop + - title: "نحوه رندر فایل های DOCX به PDF" + content: | + اسناد DOCX را بدون نصب Microsoft Word یا سایر نرم افزارها به PDF ارائه دهید. به راحتی فایل های DOCX را در برنامه دات نت خود بارگیری و مشاهده کنید، چه یک برنامه وب یا دسکتاپ. در اینجا مثالی از نحوه ارائه یک فایل DOCX به PDF آورده شده است: + samples: + - language: "C#" + color: "blue" + content: | + ```csharp {style=abap} + // فایل DOCX را برای رندر بارگیری کنید + using (Viewer viewer = new Viewer("sample.docx")) + { + // DOCX را به یک فایل PDF رندر کنید + PdfViewOptions viewOptions = new PdfViewOptions(); + viewer.View(viewOptions); + } + ``` + - language: "Java" + color: "red" + content: | + ```java {style=abap} + import com.groupdocs.viewer.Viewer; + import com.groupdocs.viewer.options.PdfViewOptions; + // ... + // فایل DOCX را برای رندر بارگیری کنید + try (Viewer viewer = new Viewer("sample.docx")) { + // DOCX را به یک فایل PDF رندر کنید + PdfViewOptions viewOptions = new PdfViewOptions(); + viewer.view(viewOptions); + } + ``` + - language: "TypeScript" + color: "green" + content: | + ```javascript {style=abap} + // فایل DOCX را برای رندر بارگیری کنید + const viewer = new groupdocs.viewer.Viewer("sample.docx") + + // DOCX را به یک فایل PDF رندر کنید + const viewOptions = groupdocs.viewer.PdfViewOptions(output.pdf) + viewer.view(viewOptions) + ``` + + - language: "Python" + color: "yellow" + content: | + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + // فایل DOCX را برای رندر بارگیری کنید + with gv.Viewer("sample.docx") as viewer: + + // DOCX را به یک فایل PDF رندر کنید + viewOptions = gvo.PdfViewOptions("output.pdf") + viewer.view(viewOptions) + ``` + +############################# Formats ############################ +formats: + enable: true + title: "180+ فرمت فایل پشتیبانی می شود" + description: "GroupDocs.Viewer از عملیات با محبوب ترین پشتیبانی می کند [formats](https://docs.groupdocs.com/viewer/net/supported-document-formats/)" + + +############################# Metrics ############################ + +metrics: + enable: true + title: "معیارهای عمیق و بینش آماری" + description: "در تجزیه و تحلیل دقیق ارقام کلیدی ما غوطه ور شوید و معیارهای جامع و بینش آماری را در مورد دستاوردها، تأثیر و رشد ما ارائه دهید." + + items: + # metrics loop + - number: "180+" + title: "فرمت های پشتیبانی شده" + content: "به راحتی بیش از 180 فرمت فایل از جمله اسناد، تصاویر و نقشه های CAD را بدون دردسر مشاهده کنید. با راه حل جامع مشاهده ما موانع سازگاری را بشکنید و بدون زحمت به فایل های مختلف دسترسی پیدا کنید." + # metrics loop + - number: "1.0M" + title: "دانلودهای NuGet" + content: "راه حل بسته NuGet ما به یک منبع قابل اعتماد و پذیرفته شده در جامعه توسعه دهندگان تبدیل شده است که یکپارچه سازی یکپارچه و عملکرد ارزشمند را برای پروژه های بی شماری فراهم می کند." + + # metrics loop + - number: "10+" + title: "کتابخانه ها" + content: "محصول ما شامل بیش از 10 کتابخانه است که ویژگی های پیشرفته ای را برای بهینه سازی عملکرد ارائه می دهد. این کتابخانه ها برای برآوردن نیازهای مختلف توسعه با قابلیت های بی نظیر طراحی شده اند." + + # metrics loop + - number: "100+" + title: "مشتریان خوشحال" + content: "ارائه خدمات به نمادین ترین مارک ها در سراسر جهان. کشف کنید که چرا صدها نفر GroupDocs.Viewer را دوست دارند! ناوبری بی‌وقفه، همکاری راحت و سهولت استفاده بی‌نظیر را کاوش کنید. همین الان ملحق شوید، همین الان بپیوندید!" + + +############################# Customers ############################ +# logo size X1 => 170:70 X2 => 340 : 140 + +customers: + enable: true + title: "مشتریان خوشحال ما" + description: "کتابخانه های GroupDocs توسط برندهای مشهور و برجسته جهانی در سراسر جهان به کار گرفته می شوند." + + items: + # customers loop + - title: "BenQ Corporation" + logo: "benq" + # customers loop + - title: "Nasdaq Stock Market" + logo: "nasdaq" + # customers loop + - title: "AT&T Inc." + logo: "att" + # customers loop + - title: "AstraZeneca" + logo: "astrazeneca" + # customers loop + - title: "Central Bank of Argentina" + logo: "argentinacentralbank" + # customers loop + - title: "Roche Holding AG" + logo: "roche" + # customers loop + - title: "Capita" + logo: "capita" + # customers loop + - title: "Axa S.A." + logo: "axa" + # customers loop + - title: "Instructure Inc." + logo: "instructure" + # customers loop + - title: "Wipro" + logo: "wipro" + + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + + items: + # loop + - title: ".NET" + link: "/viewer/net/" + color: "blue" + # loop + - title: "Java" + link: "/viewer/java/" + color: "red" + # loop + - title: "Node.js" + link: "/viewer/nodejs-java/" + color: "green" + # loop + - title: "Python" + link: "/viewer/python-net/" + color: "yellow" + +############################# Faq ############################ + +faq: + enable: true + title: "سوالات و نگرانی های رایج" + description: "پاسخ سوالات متداول را در بخش سوالات متداول ما بیابید تا به سرعت سوالات و نگرانی های خود را برطرف کنید." + + items: + # loop + - question: "آیا می توانم محصولات GroupDocs را قبل از خرید ارزیابی کنم؟" + answer: | + آره! همه محصولات GroupDocs دارای یک نسخه ارزیابی بدون ریسک هستند. ما قویاً توسعه دهندگان را تشویق می کنیم تا قبل از خرید API های ما را دانلود و امتحان کنند تا مطمئن شوند که نیازهای شما را 100٪ برآورده می کنند. + # loop + - question: "آیا GroupDocs نمایش محصول را انجام می دهد؟" + answer: | + خیر، تمرکز ما بر روی API های خود و ساختن کاربردی ترین و پایدارترین محصولات ممکن است. ما آزمایش‌های کاملاً کاربردی و رایگان را در قالب یک [license](https://purchase.groupdocs.com/temporary-license/) ارائه می‌کنیم تا بتوانید خودتان محصول را آزمایش کنید. + # loop + - question: "از کجا می توانم محصول را دانلود کنم؟" + answer: | + همه محصولات برای دانلود از [releases](https://releases.groupdocs.com) در دسترس هستند. ما نسخه های فیزیکی نرم افزار خود را از طریق پست ارسال نمی کنیم. + # loop + - question: "آیا مجوزهای برنامه‌نویس GroupDocs برای هر کاربر یا هر کاربر نام‌گذاری شده است؟" + answer: | + مجوزهای توسعه دهنده GroupDocs برای هر کاربر است، نه برای هر کاربر نامگذاری شده. ما می دانیم که اعضای یک تیم برنامه نویسی ممکن است در طول زمان تغییر کنند و اینکه هر بار که اتفاق می افتد به روز رسانی مجوز عملی نیست. + # loop + - question: "آیا فقط برای توسعه دهندگان فعال نیاز به مجوز داریم؟ به عنوان مثال، ما یک تیم متشکل از دو توسعه دهنده داریم که روی شیفت A کار می کنند و یک تیم دوم متشکل از دو توسعه دهنده در شیفت B کار می کنند ... در این شرایط، آیا به دو یا چهار مجوز نیاز داریم؟" + answer: | + همه توسعه دهندگانی که روی پروژه کار می کنند نیاز به مجوز دارند. در این شرایط، GroupDocs تیم شما را چهار عضو می بیند (حتی اگر آنها در زمان های مختلف کار می کنند). + +############################# Cloud ############################ + +cloud_links: + enable: true + title: "APIهای کم کد GroupDocs.Viewer" + description: "با REST API مبتنی بر ابر ما، مشاهده سند یا تصویر را در هر نوع برنامه‌ای تسریع کنید" + + items: + # loop + - icon: "groupdocs_viewer-for-curl" + title: "GroupDocs.Viewer Cloud for cURL" + link: "https://products.groupdocs.cloud/viewer/curl" + content: "از CURL RESTful document viewer API استفاده کنید تا مایکروسافت آفیس، پی دی اف، و فرمت های مختلف فایل استاندارد دیگر را به طور موثر در برنامه های خود رندر و نمایش دهید." + + # loop + - icon: "groupdocs_viewer-for-net" + title: "GroupDocs.Viewer Cloud for .NET" + link: "https://products.groupdocs.cloud/viewer/net" + content: "با Cloud SDK برای دات‌نت، قابلیت‌های مشاهده اسناد را در برنامه‌های NET افزایش دهید. اسناد را به صورت یکپارچه در قالب‌های HTML، PDF یا تصویر مشاهده کنید." + # loop + - icon: "groupdocs_viewer-for-java" + title: "GroupDocs.Viewer Cloud for Java" + link: "https://products.groupdocs.cloud/viewer/java" + content: "با استفاده از یک Document Viewer SDK برای جاوا، قابلیت‌های پیشرفته ارائه اسناد را در برنامه‌های جاوا خود ادغام کنید." + +############################# Apps ############################ + +app_links: + enable: true + title: "برنامه های GroupDocs.Viewer NoCode" + description: "برنامه آنلاین که به شما امکان می دهد 180 فرمت فایل محبوب را در مرورگر مشاهده کنید" + + items: + # loop + - icon: "groupdocs_viewer-app" + title: "GroupDocs.Viewer Total" + link: "https://products.groupdocs.app/viewer/total" + content: "برای مشاهده بیش از 180 فرمت فایل مستقیماً از مرورگر وب دلخواه خود، یک برنامه آنلاین رایگان کاوش کنید." + + # loop + - icon: "groupdocs_words-app" + title: "GroupDocs.Viewer DOCX" + link: "https://products.groupdocs.app/viewer/docx" + content: "ابزار مبتنی بر وب برای مشاهده فایل های Microsoft Word بدون دردسر در دستگاه های مختلف." + + # loop + - icon: "groupdocs_pdf-app" + title: "GroupDocs.Viewer PDF" + link: "https://products.groupdocs.app/viewer/pdf" + content: "باز کردن و مشاهده فایل های PDF به صورت آنلاین با نمایشگر PDF رایگان." + + +--- \ No newline at end of file diff --git a/content/viewer/_index.fr.md b/content/viewer/_index.fr.md new file mode 100644 index 00000000..358966fc --- /dev/null +++ b/content/viewer/_index.fr.md @@ -0,0 +1,402 @@ +--- +############################# Static ########################## +layout: "family" +date: 2023-12-20T06:39:57 +draft: false + +product: "Viewer" +product_tag: "viewer" + +############################# Head ############################ +head_title: "API de rendu et d'affichage de documents | API sur site et service en ligne" +head_description: "Rendre et visualiser des fichiers Word, PDF, Excel, Powerpoint ou Image facilement et gratuitement" + +############################# Header ########################## +title: "Rendre et visualiser des documents en toute simplicité" +description: | + API de visualisation puissante pour restituer différents fichiers au format PDF, HTML et image. + + Chargez des documents à partir de diverses sources, notamment des fichiers, des flux, des URL, des serveurs FTP, Amazon S3, Azure Blob Storage, etc. + + Générez des pages HTML réactives, protégez les fichiers PDF de sortie et réorganisez leurs pages, faites pivoter les pages, restituez les notes et les commentaires si nécessaire. + +############################# Platforms ############################ +supported_platforms: + enable: true + head_title: "Choisissez votre plateforme" + title: "Plateformes prises en charge" + description: "La bibliothèque GroupDocs.Viewer prend en charge les systèmes d'exploitation et les frameworks suivants" + details_link_title: "Apprendre encore plus" + items: + # supported_platforms loop + - title: ".NET" + description: "GroupDocs.Viewer for .NET" + color: "blue" + tag: "net" + link: "/viewer/net/" + features_link: "https://docs.groupdocs.com/viewer/net/system-requirements/" + features: + # features loop + - content: ".NET Framework 4.6.2+
.NET Core 3.1
.NET 6+" + rows: "3" + # features loop + - content: "Windows, Linux" + rows: "1" + # features loop + - content: "Plus de 180 formats de fichiers" + rows: "1" + # features loop + - content: "Package d’interface utilisateur pour ASP.NET Core" + rows: "1" + # features loop + - content: "ASP.NET WebForms Demo
ASP.NET MVC Demo
ASP.NET Core Demo" + rows: "3" + + # supported_platforms loop + - title: "Java" + description: "GroupDocs.Viewer for Java" + color: "red" + tag: "java" + link: "/viewer/java/" + features_link: "https://docs.groupdocs.com/viewer/java/system-requirements/" + features: + # features loop + - content: "J2SE 8.0 (1.8)+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "Plus de 180 formats de fichiers" + rows: "1" + # features loop + - content: "Package d'interface utilisateur pour Spring et Dropwizard" + rows: "1" + # features loop + - content: "Spring Demo
Dropwizard demo" + rows: "3" + + # supported_platforms loop + - title: "Node.js" + description: "GroupDocs.Viewer for Node.js" + color: "green" + tag: "nodejs-java" + link: "/viewer/nodejs-java/" + features_link: "https://docs.groupdocs.com/viewer/nodejs-java/system-requirements/" + features: + # features loop + - content: "Node.js 16+
and J2SE 8.0 (1.8)+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "Plus de 180 formats de fichiers" + rows: "1" + # features loop + - content: "Package d'interface utilisateur - à venir" + rows: "1" + # features loop + - content: "Démo - à venir" + rows: "3" + + # supported_platforms loop + - title: "Python" + description: "GroupDocs.Viewer for Python" + color: "yellow" + tag: "python-net" + link: "/viewer/python-net/" + features_link: "https://docs.groupdocs.com/viewer/python-net/system-requirements/" + features: + # features loop + - content: "Python 3.9+
and .Net 6+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "Plus de 180 formats de fichiers" + rows: "1" + # features loop + - content: "Package d'interface utilisateur - à venir" + rows: "1" + # features loop + - content: "Démo - à venir" + rows: "3" + +############################# Features ############################ + +features: + enable: true + title: "Ensemble de fonctionnalités de GroupDocs.Viewer" + description: "API pour restituer des fichiers de différents types tels que HTML, PDF, PNG et JPEG dans des applications afin de les visualiser sans logiciel tiers." + + items: + # feature loop + - icon: "view" + title: "Afficher des documents et des images" + content: "Affichez des documents en les restituant sous forme de fichiers HTML, PDF, PNG et JPEG." + + # feature loop + - icon: "password" + title: "Ouvrir des documents sécurisés" + content: "Spécifiez un mot de passe pour ouvrir les documents cryptés." + + # feature loop + - icon: "load" + title: "Chargez des fichiers de n'importe où" + content: "Chargez des documents à partir de divers fichiers, URL, serveurs FTP, Amazon S3, etc." + + # feature loop + - icon: "pages" + title: "Afficher toutes les pages ou des pages spécifiques" + content: "Spécifiez une plage de numéros de page à afficher." + + +############################# Code samples ############################ +code_samples: + enable: true + title: "Exemples de code GroupDocs.Viewer" + description: "Quelques cas d'utilisation d'opérations GroupDocs.Viewer typiques en C#, Java, TypeScript" + items: + # code sample loop + - title: "Comment rendre des fichiers DOCX au format PDF" + content: | + Rendu des documents DOCX au format PDF sans Microsoft Word ou autre logiciel installé. Chargez et affichez facilement des fichiers DOCX dans votre application .NET, qu'il s'agisse d'une application Web ou de bureau. Voici un exemple de comment rendre un fichier DOCX au format PDF : + samples: + - language: "C#" + color: "blue" + content: | + ```csharp {style=abap} + // Charger le fichier DOCX à rendre + using (Viewer viewer = new Viewer("sample.docx")) + { + // Rendre DOCX dans un fichier PDF + PdfViewOptions viewOptions = new PdfViewOptions(); + viewer.View(viewOptions); + } + ``` + - language: "Java" + color: "red" + content: | + ```java {style=abap} + import com.groupdocs.viewer.Viewer; + import com.groupdocs.viewer.options.PdfViewOptions; + // ... + // Charger le fichier DOCX à rendre + try (Viewer viewer = new Viewer("sample.docx")) { + // Rendre DOCX dans un fichier PDF + PdfViewOptions viewOptions = new PdfViewOptions(); + viewer.view(viewOptions); + } + ``` + - language: "TypeScript" + color: "green" + content: | + ```javascript {style=abap} + // Charger le fichier DOCX à rendre + const viewer = new groupdocs.viewer.Viewer("sample.docx") + + // Rendre DOCX dans un fichier PDF + const viewOptions = groupdocs.viewer.PdfViewOptions(output.pdf) + viewer.view(viewOptions) + ``` + + - language: "Python" + color: "yellow" + content: | + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + // Charger le fichier DOCX à rendre + with gv.Viewer("sample.docx") as viewer: + + // Rendre DOCX dans un fichier PDF + viewOptions = gvo.PdfViewOptions("output.pdf") + viewer.view(viewOptions) + ``` + +############################# Formats ############################ +formats: + enable: true + title: "Plus de 180 formats de fichiers pris en charge" + description: "GroupDocs.Viewer prend en charge les opérations avec les [formats de fichiers](https://docs.groupdocs.com/viewer/net/supported-document-formats/) les plus populaires" + + +############################# Metrics ############################ + +metrics: + enable: true + title: "Mesures approfondies et informations statistiques" + description: "Plongez dans une présentation détaillée de nos chiffres clés, fournissant des mesures complètes et des informations statistiques sur nos réalisations, notre impact et notre croissance." + + items: + # metrics loop + - number: "180+" + title: "Formats pris en charge" + content: "Visualisez facilement plus de 180 formats de fichiers, notamment des documents, des images et des dessins CAO, sans tracas. Brisez les barrières de compatibilité et accédez sans effort à divers fichiers grâce à notre solution de visualisation complète." + # metrics loop + - number: "1.0M" + title: "Téléchargements NuGet" + content: "Notre solution de package NuGet est devenue une ressource fiable et largement adoptée par la communauté des développeurs, offrant une intégration transparente et des fonctionnalités précieuses pour d'innombrables projets." + + # metrics loop + - number: "10+" + title: "Bibliothèques" + content: "Notre produit comprend plus de 10 bibliothèques offrant des fonctionnalités avancées pour optimiser les performances. Ces bibliothèques sont conçues pour répondre à différents besoins de développement avec des capacités inégalées." + + # metrics loop + - number: "100+" + title: "Clients satisfaits" + content: "Au service des marques les plus emblématiques du monde entier. Découvrez pourquoi des centaines de personnes aiment GroupDocs.Viewer ! Découvrez une navigation transparente, une collaboration pratique et une facilité d'utilisation inégalée. Adhérer maintenant!" + + +############################# Customers ############################ +# logo size X1 => 170:70 X2 => 340 : 140 + +customers: + enable: true + title: "Nos clients satisfaits" + description: "Les bibliothèques GroupDocs sont utilisées par des marques de renommée mondiale et distinguées à travers le monde." + + items: + # customers loop + - title: "BenQ Corporation" + logo: "benq" + # customers loop + - title: "Nasdaq Stock Market" + logo: "nasdaq" + # customers loop + - title: "AT&T Inc." + logo: "att" + # customers loop + - title: "AstraZeneca" + logo: "astrazeneca" + # customers loop + - title: "Central Bank of Argentina" + logo: "argentinacentralbank" + # customers loop + - title: "Roche Holding AG" + logo: "roche" + # customers loop + - title: "Capita" + logo: "capita" + # customers loop + - title: "Axa S.A." + logo: "axa" + # customers loop + - title: "Instructure Inc." + logo: "instructure" + # customers loop + - title: "Wipro" + logo: "wipro" + + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + + items: + # loop + - title: ".NET" + link: "/viewer/net/" + color: "blue" + # loop + - title: "Java" + link: "/viewer/java/" + color: "red" + # loop + - title: "Node.js" + link: "/viewer/nodejs-java/" + color: "green" + # loop + - title: "Python" + link: "/viewer/python-net/" + color: "yellow" + +############################# Faq ############################ + +faq: + enable: true + title: "Questions et préoccupations courantes" + description: "Trouvez des réponses aux demandes courantes dans notre section FAQ pour répondre rapidement à vos questions et préoccupations." + + items: + # loop + - question: "Puis-je évaluer les produits GroupDocs avant de les acheter ?" + answer: | + Oui! Tous les produits GroupDocs disposent d'une version d'évaluation sans risque. Nous encourageons fortement les développeurs à télécharger et à essayer nos API avant d'acheter pour nous assurer qu'elles répondront à 100 % à vos besoins. + # loop + - question: "GroupDocs fait-il des démonstrations de produits ?" + answer: | + Non, nous nous concentrons sur nos API et sur la création des produits les plus fonctionnels et les plus stables possibles. Nous proposons des essais entièrement fonctionnels et gratuits sous la forme d'une [licence temporaire](https://purchase.groupdocs.com/temporary-license/) afin que vous puissiez tester le produit par vous-même. + # loop + - question: "Où puis-je télécharger le produit ?" + answer: | + Tous les produits peuvent être téléchargés à partir du [site Web](https://releases.groupdocs.com). Nous n'envoyons pas de copies physiques de nos logiciels par courrier. + # loop + - question: "Les licences de développeur GroupDocs sont-elles par utilisateur ou par utilisateur nommé ?" + answer: | + Les licences GroupDocs Developer sont attribuées par utilisateur et non par utilisateur nommé. Nous comprenons que les membres d'une équipe de codage peuvent changer au fil du temps et qu'il n'est pas pratique de devoir mettre à jour les licences à chaque fois que cela se produit. + # loop + - question: "Avons-nous besoin de licences uniquement pour les développeurs actifs ? Par exemple, nous avons une équipe de deux développeurs travaillant sur l’équipe A et une deuxième équipe de deux développeurs travaillant sur l’équipe B… dans cette situation, avons-nous besoin de deux ou quatre licences ?" + answer: | + Tous les développeurs qui travaillent sur le projet doivent détenir une licence. Dans cette situation, GroupDocs considère votre équipe comme composée de quatre membres (même s'ils travaillent à des horaires différents). + +############################# Cloud ############################ + +cloud_links: + enable: true + title: "API à faible code GroupDocs.Viewer" + description: "Accélérez la visualisation de documents ou d'images dans tout type d'application grâce à notre API REST basée sur le cloud" + + items: + # loop + - icon: "groupdocs_viewer-for-curl" + title: "GroupDocs.Viewer Cloud for cURL" + link: "https://products.groupdocs.cloud/viewer/curl" + content: "Utilisez l'API de visualisation de documents cURL RESTful pour restituer et présenter efficacement Microsoft Office, PDF et divers autres formats de fichiers standard dans vos applications." + + # loop + - icon: "groupdocs_viewer-for-net" + title: "GroupDocs.Viewer Cloud for .NET" + link: "https://products.groupdocs.cloud/viewer/net" + content: "Améliorez les capacités d'affichage de documents dans les applications .NET avec le SDK Cloud pour .NET. Affichez des documents de manière transparente aux formats HTML, PDF ou image." + # loop + - icon: "groupdocs_viewer-for-java" + title: "GroupDocs.Viewer Cloud for Java" + link: "https://products.groupdocs.cloud/viewer/java" + content: "Intégrez des fonctionnalités avancées de rendu de documents dans vos applications Java à l'aide d'un SDK de visionneuse de documents spécialement conçu pour Java." + +############################# Apps ############################ + +app_links: + enable: true + title: "Applications GroupDocs.Viewer NoCode" + description: "Application en ligne vous permettant de visualiser plus de 180 formats de fichiers populaires dans un navigateur" + + items: + # loop + - icon: "groupdocs_viewer-app" + title: "GroupDocs.Viewer Total" + link: "https://products.groupdocs.app/viewer/total" + content: "Explorez une application en ligne gratuite pour afficher plus de 180 formats de fichiers directement depuis votre navigateur Web préféré." + + # loop + - icon: "groupdocs_words-app" + title: "GroupDocs.Viewer DOCX" + link: "https://products.groupdocs.app/viewer/docx" + content: "Outil Web permettant de visualiser facilement des fichiers Microsoft Word sur différents appareils." + + # loop + - icon: "groupdocs_pdf-app" + title: "GroupDocs.Viewer PDF" + link: "https://products.groupdocs.app/viewer/pdf" + content: "Ouvrez et visualisez des fichiers PDF en ligne avec la visionneuse PDF gratuite." + + +--- \ No newline at end of file diff --git a/content/viewer/_index.id.md b/content/viewer/_index.id.md new file mode 100644 index 00000000..5ba33184 --- /dev/null +++ b/content/viewer/_index.id.md @@ -0,0 +1,402 @@ +--- +############################# Static ########################## +layout: "family" +date: 2023-12-20T06:39:57 +draft: false + +product: "Viewer" +product_tag: "viewer" + +############################# Head ############################ +head_title: "Render dan Lihat Dokumen API | API Lokal dan layanan online" +head_description: "Render & lihat file Word, PDF, Excel, Powerpoint atau Gambar dengan mudah dan gratis" + +############################# Header ########################## +title: "Render dan lihat dokumen dengan mudah" +description: | + API Penampil yang Kuat untuk Merender berbagai file ke PDF, HTML, dan Gambar. + + Memuat dokumen dari berbagai sumber, termasuk file, aliran, URL, server FTP, Amazon S3, Azure Blob Storage, dan banyak lagi. + + Hasilkan halaman HTML responsif, lindungi file PDF keluaran dan susun ulang halamannya, putar halaman, render catatan dan komentar jika diperlukan. + +############################# Platforms ############################ +supported_platforms: + enable: true + head_title: "Pilih platform Anda" + title: "Platform yang didukung" + description: "Pustaka GroupDocs.Viewer mendukung sistem operasi dan kerangka kerja berikut" + details_link_title: "Belajarlah lagi" + items: + # supported_platforms loop + - title: ".NET" + description: "GroupDocs.Viewer for .NET" + color: "blue" + tag: "net" + link: "/viewer/net/" + features_link: "https://docs.groupdocs.com/viewer/net/system-requirements/" + features: + # features loop + - content: ".NET Framework 4.6.2+
.NET Core 3.1
.NET 6+" + rows: "3" + # features loop + - content: "Windows, Linux" + rows: "1" + # features loop + - content: "180+ format file" + rows: "1" + # features loop + - content: "Paket UI untuk ASP.NET Core" + rows: "1" + # features loop + - content: "ASP.NET WebForms Demo
ASP.NET MVC Demo
ASP.NET Core Demo" + rows: "3" + + # supported_platforms loop + - title: "Java" + description: "GroupDocs.Viewer for Java" + color: "red" + tag: "java" + link: "/viewer/java/" + features_link: "https://docs.groupdocs.com/viewer/java/system-requirements/" + features: + # features loop + - content: "J2SE 8.0 (1.8)+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "180+ format file" + rows: "1" + # features loop + - content: "Paket UI untuk Spring dan Dropwizard" + rows: "1" + # features loop + - content: "Spring Demo
Dropwizard demo" + rows: "3" + + # supported_platforms loop + - title: "Node.js" + description: "GroupDocs.Viewer for Node.js" + color: "green" + tag: "nodejs-java" + link: "/viewer/nodejs-java/" + features_link: "https://docs.groupdocs.com/viewer/nodejs-java/system-requirements/" + features: + # features loop + - content: "Node.js 16+
and J2SE 8.0 (1.8)+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "180+ format file" + rows: "1" + # features loop + - content: "Paket UI - segera hadir" + rows: "1" + # features loop + - content: "Demo - segera hadir" + rows: "3" + + # supported_platforms loop + - title: "Python" + description: "GroupDocs.Viewer for Python" + color: "yellow" + tag: "python-net" + link: "/viewer/python-net/" + features_link: "https://docs.groupdocs.com/viewer/python-net/system-requirements/" + features: + # features loop + - content: "Python 3.9+
and .Net 6+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "180+ format file" + rows: "1" + # features loop + - content: "Paket UI - segera hadir" + rows: "1" + # features loop + - content: "Demo - segera hadir" + rows: "3" + +############################# Features ############################ + +features: + enable: true + title: "Kumpulan fitur GroupDocs.Viewer" + description: "API untuk merender file dari berbagai jenis seperti HTML, PDF, PNG, dan JPEG dalam aplikasi untuk melihatnya tanpa perangkat lunak pihak ketiga." + + items: + # feature loop + - icon: "view" + title: "Lihat dokumen dan gambar" + content: "Lihat dokumen dengan merendernya sebagai file HTML, PDF, PNG, dan JPEG." + + # feature loop + - icon: "password" + title: "Buka dokumen aman" + content: "Tentukan kata sandi untuk membuka dokumen terenkripsi." + + # feature loop + - icon: "load" + title: "Muat file dari mana saja" + content: "Muat dokumen dari berbagai file, URL, server FTP, Amazon S3, dan lainnya." + + # feature loop + - icon: "pages" + title: "Render semua atau halaman tertentu" + content: "Tentukan rentang nomor halaman yang akan dirender." + + +############################# Code samples ############################ +code_samples: + enable: true + title: "Contoh kode GroupDocs.Viewer" + description: "Beberapa kasus penggunaan operasi GroupDocs.Viewer yang umum di C#, Java, TypeScript" + items: + # code sample loop + - title: "Cara merender file DOCX ke PDF" + content: | + Render dokumen DOCX ke PDF tanpa menginstal Microsoft Word atau perangkat lunak lain. Memuat dan melihat file DOCX dengan mudah dalam aplikasi .NET Anda, baik itu aplikasi web atau desktop. Berikut adalah contoh cara merender file DOCX ke PDF: + samples: + - language: "C#" + color: "blue" + content: | + ```csharp {style=abap} + // Muat file DOCX untuk dirender + using (Viewer viewer = new Viewer("sample.docx")) + { + // Render DOCX ke file PDF + PdfViewOptions viewOptions = new PdfViewOptions(); + viewer.View(viewOptions); + } + ``` + - language: "Java" + color: "red" + content: | + ```java {style=abap} + import com.groupdocs.viewer.Viewer; + import com.groupdocs.viewer.options.PdfViewOptions; + // ... + // Muat file DOCX untuk dirender + try (Viewer viewer = new Viewer("sample.docx")) { + // Render DOCX ke file PDF + PdfViewOptions viewOptions = new PdfViewOptions(); + viewer.view(viewOptions); + } + ``` + - language: "TypeScript" + color: "green" + content: | + ```javascript {style=abap} + // Muat file DOCX untuk dirender + const viewer = new groupdocs.viewer.Viewer("sample.docx") + + // Render DOCX ke file PDF + const viewOptions = groupdocs.viewer.PdfViewOptions(output.pdf) + viewer.view(viewOptions) + ``` + + - language: "Python" + color: "yellow" + content: | + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + // Muat file DOCX untuk dirender + with gv.Viewer("sample.docx") as viewer: + + // Render DOCX ke file PDF + viewOptions = gvo.PdfViewOptions("output.pdf") + viewer.view(viewOptions) + ``` + +############################# Formats ############################ +formats: + enable: true + title: "180+ format file didukung" + description: "GroupDocs.Viewer mendukung operasi dengan paling popule [format file](https://docs.groupdocs.com/viewer/net/supported-document-formats/)" + + +############################# Metrics ############################ + +metrics: + enable: true + title: "Metrik mendalam dan wawasan statistik" + description: "Pelajari rincian angka-angka penting kami, yang memberikan metrik komprehensif dan wawasan statistik mengenai pencapaian, dampak, dan pertumbuhan kami." + + items: + # metrics loop + - number: "180+" + title: "Format yang didukung" + content: "Lihat lebih dari 180 format file termasuk dokumen, gambar, dan gambar CAD dengan mudah tanpa repot. Hancurkan hambatan kompatibilitas dan akses beragam file dengan mudah menggunakan solusi tampilan komprehensif kami." + # metrics loop + - number: "1.0M" + title: "Unduhan NuGet" + content: "Solusi paket NuGet kami telah menjadi sumber daya tepercaya dan diadopsi secara luas di komunitas pengembang, menyediakan integrasi tanpa batas dan fungsionalitas berharga untuk banyak proyek." + + # metrics loop + - number: "10+" + title: "Perpustakaan" + content: "Produk kami mencakup 10+ perpustakaan, menawarkan fitur-fitur canggih untuk mengoptimalkan kinerja. Perpustakaan ini dirancang untuk memenuhi kebutuhan pengembangan yang berbeda dengan kemampuan yang tak tertandingi." + + # metrics loop + - number: "100+" + title: "Pelanggan yang senang" + content: "Melayani merek paling ikonik di seluruh dunia. Temukan mengapa ratusan orang menyukai GroupDocs.Viewer! Jelajahi navigasi yang lancar, kolaborasi yang nyaman, dan kemudahan penggunaan yang tak tertandingi. Bergabung sekarang!" + + +############################# Customers ############################ +# logo size X1 => 170:70 X2 => 340 : 140 + +customers: + enable: true + title: "Pelanggan kami yang bahagia" + description: "Perpustakaan GroupDocs digunakan oleh merek-merek terkenal dan terkemuka secara global di seluruh dunia." + + items: + # customers loop + - title: "BenQ Corporation" + logo: "benq" + # customers loop + - title: "Nasdaq Stock Market" + logo: "nasdaq" + # customers loop + - title: "AT&T Inc." + logo: "att" + # customers loop + - title: "AstraZeneca" + logo: "astrazeneca" + # customers loop + - title: "Central Bank of Argentina" + logo: "argentinacentralbank" + # customers loop + - title: "Roche Holding AG" + logo: "roche" + # customers loop + - title: "Capita" + logo: "capita" + # customers loop + - title: "Axa S.A." + logo: "axa" + # customers loop + - title: "Instructure Inc." + logo: "instructure" + # customers loop + - title: "Wipro" + logo: "wipro" + + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + + items: + # loop + - title: ".NET" + link: "/viewer/net/" + color: "blue" + # loop + - title: "Java" + link: "/viewer/java/" + color: "red" + # loop + - title: "Node.js" + link: "/viewer/nodejs-java/" + color: "green" + # loop + - title: "Python" + link: "/viewer/python-net/" + color: "yellow" + +############################# Faq ############################ + +faq: + enable: true + title: "Pertanyaan dan kekhawatiran umum" + description: "Temukan jawaban atas pertanyaan umum di bagian FAQ kami untuk menjawab pertanyaan dan kekhawatiran Anda dengan cepat." + + items: + # loop + - question: "Bisakah saya mengevaluasi produk GroupDocs sebelum membeli?" + answer: | + Ya! Semua produk GroupDocs memiliki versi evaluasi yang bebas risiko. Kami sangat menganjurkan pengembang untuk mengunduh dan mencoba API kami sebelum membeli untuk memastikan bahwa API tersebut akan memenuhi kebutuhan Anda 100%. + # loop + - question: "Apakah GroupDocs melakukan demonstrasi produk?" + answer: | + Tidak, fokus kami adalah pada API kami dan membuat produk yang paling fungsional dan stabil. Kami menawarkan uji coba yang berfungsi penuh dan gratis dalam bentuk [lisensi sementara](https://purchase.groupdocs.com/temporary-license/) sehingga Anda dapat menguji sendiri produk tersebut. + # loop + - question: "Dimana saya bisa mendownload produknya?" + answer: | + Semua produk tersedia untuk diunduh dari [situs web](https://releases.groupdocs.com). Kami tidak mengirimkan salinan fisik perangkat lunak kami melalui surat. + # loop + - question: "Apakah lisensi pengembang GroupDocs per pengguna, atau per pengguna yang disebutkan namanya?" + answer: | + Lisensi Pengembang GroupDocs adalah per pengguna, bukan per pengguna yang disebutkan namanya. Kami memahami bahwa anggota tim coding dapat berubah seiring berjalannya waktu dan tidak praktis jika harus memperbarui lisensi setiap kali hal tersebut terjadi. + # loop + - question: "Apakah kita memerlukan lisensi hanya untuk pengembang aktif? Misalnya, kami memiliki tim yang terdiri dari dua pengembang yang mengerjakan shift A dan tim kedua yang terdiri dari dua pengembang yang mengerjakan shift B… dalam situasi ini, apakah kami memerlukan dua atau empat lisensi?" + answer: | + Semua pengembang yang mengerjakan proyek harus memiliki lisensi. Dalam situasi ini, GroupDocs melihat tim Anda memiliki empat anggota (meskipun mereka bekerja pada waktu yang berbeda). + +############################# Cloud ############################ + +cloud_links: + enable: true + title: "GroupDocs.Viewer API kode rendah" + description: "Percepat tampilan dokumen atau gambar di semua jenis aplikasi dengan REST API kami yang berbasis cloud" + + items: + # loop + - icon: "groupdocs_viewer-for-curl" + title: "GroupDocs.Viewer Cloud for cURL" + link: "https://products.groupdocs.cloud/viewer/curl" + content: "Gunakan API penampil dokumen cURL RESTful untuk merender dan menampilkan Microsoft Office, PDF, dan berbagai format file standar lainnya secara efisien dalam aplikasi Anda." + + # loop + - icon: "groupdocs_viewer-for-net" + title: "GroupDocs.Viewer Cloud for .NET" + link: "https://products.groupdocs.cloud/viewer/net" + content: "Tingkatkan kemampuan melihat dokumen di aplikasi .NET dengan Cloud SDK untuk .NET. Lihat dokumen dengan lancar dalam format HTML, PDF, atau gambar." + # loop + - icon: "groupdocs_viewer-for-java" + title: "GroupDocs.Viewer Cloud for Java" + link: "https://products.groupdocs.cloud/viewer/java" + content: "Integrasikan kemampuan rendering dokumen tingkat lanjut ke dalam aplikasi Java Anda menggunakan SDK Penampil Dokumen untuk Java yang dibuat khusus." + +############################# Apps ############################ + +app_links: + enable: true + title: "Aplikasi NoCode GroupDocs.Viewer" + description: "Aplikasi online memungkinkan Anda melihat 180+ format file populer di browser" + + items: + # loop + - icon: "groupdocs_viewer-app" + title: "GroupDocs.Viewer Total" + link: "https://products.groupdocs.app/viewer/total" + content: "Jelajahi aplikasi online gratis untuk melihat lebih dari 180 format file langsung dari browser web pilihan Anda." + + # loop + - icon: "groupdocs_words-app" + title: "GroupDocs.Viewer DOCX" + link: "https://products.groupdocs.app/viewer/docx" + content: "Alat berbasis web untuk melihat file Microsoft Word dengan mudah di berbagai perangkat." + + # loop + - icon: "groupdocs_pdf-app" + title: "GroupDocs.Viewer PDF" + link: "https://products.groupdocs.app/viewer/pdf" + content: "Buka dan lihat file PDF online dengan penampil PDF gratis." + + +--- \ No newline at end of file diff --git a/content/viewer/_index.it.md b/content/viewer/_index.it.md new file mode 100644 index 00000000..8a6ba9f0 --- /dev/null +++ b/content/viewer/_index.it.md @@ -0,0 +1,402 @@ +--- +############################# Static ########################## +layout: "family" +date: 2023-12-20T06:39:57 +draft: false + +product: "Viewer" +product_tag: "viewer" + +############################# Head ############################ +head_title: "API di rendering e visualizzazione dei documenti | API on-premise e servizio online" +head_description: "Esegui il rendering e visualizza file Word, PDF, Excel, Powerpoint o immagini in modo semplice e gratuito" + +############################# Header ########################## +title: "Esegui il rendering e visualizza i documenti con facilità" +description: | + Potente API visualizzatore per eseguire il rendering di file diversi in PDF, HTML e immagini. + + Carica documenti da varie origini, inclusi file, flussi, URL, server FTP, Amazon S3, archiviazione BLOB di Azure e altro ancora. + + Genera pagine HTML reattive, proteggi i file PDF di output e riordina le loro pagine, ruota le pagine, visualizza note e commenti se necessario. + +############################# Platforms ############################ +supported_platforms: + enable: true + head_title: "Scegli la tua piattaforma" + title: "Piattaforme supportate" + description: "La libreria GroupDocs.Viewer supporta i seguenti sistemi operativi e framework" + details_link_title: "Saperne di più" + items: + # supported_platforms loop + - title: ".NET" + description: "GroupDocs.Viewer for .NET" + color: "blue" + tag: "net" + link: "/viewer/net/" + features_link: "https://docs.groupdocs.com/viewer/net/system-requirements/" + features: + # features loop + - content: ".NET Framework 4.6.2+
.NET Core 3.1
.NET 6+" + rows: "3" + # features loop + - content: "Windows, Linux" + rows: "1" + # features loop + - content: "Oltre 180 formati di file" + rows: "1" + # features loop + - content: "Pacchetto dell'interfaccia utente per ASP.NET Core" + rows: "1" + # features loop + - content: "ASP.NET WebForms Demo
ASP.NET MVC Demo
ASP.NET Core Demo" + rows: "3" + + # supported_platforms loop + - title: "Java" + description: "GroupDocs.Viewer for Java" + color: "red" + tag: "java" + link: "/viewer/java/" + features_link: "https://docs.groupdocs.com/viewer/java/system-requirements/" + features: + # features loop + - content: "J2SE 8.0 (1.8)+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "Oltre 180 formati di file" + rows: "1" + # features loop + - content: "Pacchetto interfaccia utente per Spring e Dropwizard" + rows: "1" + # features loop + - content: "Spring Demo
Dropwizard demo" + rows: "3" + + # supported_platforms loop + - title: "Node.js" + description: "GroupDocs.Viewer for Node.js" + color: "green" + tag: "nodejs-java" + link: "/viewer/nodejs-java/" + features_link: "https://docs.groupdocs.com/viewer/nodejs-java/system-requirements/" + features: + # features loop + - content: "Node.js 16+
and J2SE 8.0 (1.8)+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "Oltre 180 formati di file" + rows: "1" + # features loop + - content: "Pacchetto UI: disponibile a breve" + rows: "1" + # features loop + - content: "Demo - in arrivo" + rows: "3" + + # supported_platforms loop + - title: "Python" + description: "GroupDocs.Viewer for Python" + color: "yellow" + tag: "python-net" + link: "/viewer/python-net/" + features_link: "https://docs.groupdocs.com/viewer/python-net/system-requirements/" + features: + # features loop + - content: "Python 3.9+
and .Net 6+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "Oltre 180 formati di file" + rows: "1" + # features loop + - content: "Pacchetto UI: disponibile a breve" + rows: "1" + # features loop + - content: "Demo - in arrivo" + rows: "3" + +############################# Features ############################ + +features: + enable: true + title: "Set di funzionalità di GroupDocs.Viewer" + description: "API per eseguire il rendering di file di diversi tipi come HTML, PDF, PNG e JPEG nelle applicazioni per visualizzarli senza software di terze parti." + + items: + # feature loop + - icon: "view" + title: "Visualizza documenti e immagini" + content: "Visualizza i documenti visualizzandoli come file HTML, PDF, PNG e JPEG." + + # feature loop + - icon: "password" + title: "Apri documenti protetti" + content: "Specificare una password per aprire i documenti crittografati." + + # feature loop + - icon: "load" + title: "Carica file da qualsiasi luogo" + content: "Carica documenti da vari file, URL, server FTP, Amazon S3 e altro ancora." + + # feature loop + - icon: "pages" + title: "Visualizza tutte le pagine o pagine specifiche" + content: "Specificare un intervallo di numeri di pagina di cui eseguire il rendering." + + +############################# Code samples ############################ +code_samples: + enable: true + title: "Esempi di codice GroupDocs.Viewer" + description: "Alcuni casi d'uso delle tipiche operazioni GroupDocs.Viewer in C#, Java, TypeScript" + items: + # code sample loop + - title: "Come convertire i file DOCX in PDF" + content: | + Trasforma i documenti DOCX in PDF senza Microsoft Word o altri software installati. Carica e visualizza facilmente i file DOCX all'interno della tua applicazione .NET, sia che si tratti di un'applicazione Web o desktop. Ecco un esempio di come convertire un file DOCX in PDF: + samples: + - language: "C#" + color: "blue" + content: | + ```csharp {style=abap} + // Carica il file DOCX da renderizzare + using (Viewer viewer = new Viewer("sample.docx")) + { + // Renderizza DOCX in un file PDF + PdfViewOptions viewOptions = new PdfViewOptions(); + viewer.View(viewOptions); + } + ``` + - language: "Java" + color: "red" + content: | + ```java {style=abap} + import com.groupdocs.viewer.Viewer; + import com.groupdocs.viewer.options.PdfViewOptions; + // ... + // Carica il file DOCX da renderizzare + try (Viewer viewer = new Viewer("sample.docx")) { + // Renderizza DOCX in un file PDF + PdfViewOptions viewOptions = new PdfViewOptions(); + viewer.view(viewOptions); + } + ``` + - language: "TypeScript" + color: "green" + content: | + ```javascript {style=abap} + // Carica il file DOCX da renderizzare + const viewer = new groupdocs.viewer.Viewer("sample.docx") + + // Renderizza DOCX in un file PDF + const viewOptions = groupdocs.viewer.PdfViewOptions(output.pdf) + viewer.view(viewOptions) + ``` + + - language: "Python" + color: "yellow" + content: | + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + // Carica il file DOCX da renderizzare + with gv.Viewer("sample.docx") as viewer: + + // Renderizza DOCX in un file PDF + viewOptions = gvo.PdfViewOptions("output.pdf") + viewer.view(viewOptions) + ``` + +############################# Formats ############################ +formats: + enable: true + title: "Sono supportati oltre 180 formati di file" + description: "GroupDocs.Viewer supporta le operazioni con i più popolari [formati di file](https://docs.groupdocs.com/viewer/net/supported-document-formats/)" + + +############################# Metrics ############################ + +metrics: + enable: true + title: "Metriche approfondite e approfondimenti statistici" + description: "Immergiti in un'analisi dettagliata delle nostre cifre chiave, fornendo metriche complete e approfondimenti statistici sui nostri risultati, impatto e crescita." + + items: + # metrics loop + - number: "180+" + title: "Formati supportati" + content: "Visualizza facilmente oltre 180 formati di file inclusi documenti, immagini e disegni CAD senza problemi. Supera le barriere di compatibilità e accedi facilmente a file diversi con la nostra soluzione di visualizzazione completa." + # metrics loop + - number: "1.0M" + title: "Download di NuGet" + content: "La nostra soluzione di pacchetto NuGet è diventata una risorsa affidabile e ampiamente adottata nella comunità degli sviluppatori, fornendo un'integrazione perfetta e funzionalità preziose per innumerevoli progetti." + + # metrics loop + - number: "10+" + title: "Biblioteche" + content: "Il nostro prodotto include oltre 10 librerie che offrono funzionalità avanzate per ottimizzare le prestazioni. Queste librerie sono progettate per soddisfare diverse esigenze di sviluppo con capacità senza precedenti." + + # metrics loop + - number: "100+" + title: "Clienti felici" + content: "Al servizio dei marchi più iconici in tutto il mondo. Scopri perché centinaia di persone adorano GroupDocs.Viewer! Esplora la navigazione fluida, la collaborazione conveniente e la facilità d'uso senza precedenti. Iscriviti adesso!" + + +############################# Customers ############################ +# logo size X1 => 170:70 X2 => 340 : 140 + +customers: + enable: true + title: "I nostri clienti felici" + description: "Le librerie GroupDocs sono utilizzate da marchi distinti e rinomati a livello globale in tutto il mondo." + + items: + # customers loop + - title: "BenQ Corporation" + logo: "benq" + # customers loop + - title: "Nasdaq Stock Market" + logo: "nasdaq" + # customers loop + - title: "AT&T Inc." + logo: "att" + # customers loop + - title: "AstraZeneca" + logo: "astrazeneca" + # customers loop + - title: "Central Bank of Argentina" + logo: "argentinacentralbank" + # customers loop + - title: "Roche Holding AG" + logo: "roche" + # customers loop + - title: "Capita" + logo: "capita" + # customers loop + - title: "Axa S.A." + logo: "axa" + # customers loop + - title: "Instructure Inc." + logo: "instructure" + # customers loop + - title: "Wipro" + logo: "wipro" + + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + + items: + # loop + - title: ".NET" + link: "/viewer/net/" + color: "blue" + # loop + - title: "Java" + link: "/viewer/java/" + color: "red" + # loop + - title: "Node.js" + link: "/viewer/nodejs-java/" + color: "green" + # loop + - title: "Python" + link: "/viewer/python-net/" + color: "yellow" + +############################# Faq ############################ + +faq: + enable: true + title: "Domande e preoccupazioni comuni" + description: "Trova le risposte alle domande più comuni nella nostra sezione FAQ per rispondere rapidamente alle tue domande e preoccupazioni." + + items: + # loop + - question: "Posso valutare i prodotti GroupDocs prima dell'acquisto?" + answer: | + SÌ! Per tutti i prodotti GroupDocs è disponibile una versione di valutazione priva di rischi. Incoraggiamo vivamente gli sviluppatori a scaricare e provare le nostre API prima dell'acquisto per garantire che soddisfino le tue esigenze al 100%. + # loop + - question: "GroupDocs esegue dimostrazioni dei prodotti?" + answer: | + No, il nostro focus è sulle nostre API e sulla realizzazione dei prodotti più funzionali e stabili possibili. Offriamo prove completamente funzionali e gratuite sotto forma di [licenza temporanea](https://purchase.groupdocs.com/temporary-license/) in modo che tu possa testare il prodotto tu stesso. + # loop + - question: "Dove posso scaricare il prodotto?" + answer: | + Tutti i prodotti sono disponibili per il download dal [sito Web](https://releases.groupdocs.com). Non inviamo copie fisiche del nostro software tramite posta. + # loop + - question: "Le licenze per sviluppatori di GroupDocs sono per utente o per utente nominato?" + answer: | + Le licenze per sviluppatori GroupDocs sono per utente, non per utente nominato. Comprendiamo che i membri di un team di codifica possono cambiare nel tempo e che non è pratico dover aggiornare la licenza ogni volta che ciò accade. + # loop + - question: "Abbiamo bisogno di licenze solo per gli sviluppatori attivi? Ad esempio, abbiamo un team di due sviluppatori che lavorano nel turno A e un secondo team di due sviluppatori che lavorano nel turno B… in questa situazione, abbiamo bisogno di due o quattro licenze?" + answer: | + Tutti gli sviluppatori che stanno lavorando al progetto devono avere una licenza. In questa situazione, GroupDocs vede il tuo team come composto da quattro membri (anche se lavorano in momenti diversi). + +############################# Cloud ############################ + +cloud_links: + enable: true + title: "API a basso codice GroupDocs.Viewer" + description: "Accelera la visualizzazione di documenti o immagini in qualsiasi tipo di applicazione con la nostra API REST basata su cloud" + + items: + # loop + - icon: "groupdocs_viewer-for-curl" + title: "GroupDocs.Viewer Cloud for cURL" + link: "https://products.groupdocs.cloud/viewer/curl" + content: "Utilizza l'API di visualizzazione documenti RESTful di cURL per eseguire il rendering e mostrare in modo efficiente Microsoft Office, PDF e vari altri formati di file standard nelle tue applicazioni." + + # loop + - icon: "groupdocs_viewer-for-net" + title: "GroupDocs.Viewer Cloud for .NET" + link: "https://products.groupdocs.cloud/viewer/net" + content: "Migliora le funzionalità di visualizzazione dei documenti nelle applicazioni .NET con Cloud SDK per .NET. Visualizza documenti senza problemi nei formati HTML, PDF o immagine." + # loop + - icon: "groupdocs_viewer-for-java" + title: "GroupDocs.Viewer Cloud for Java" + link: "https://products.groupdocs.cloud/viewer/java" + content: "Integra funzionalità avanzate di rendering dei documenti nelle tue applicazioni Java utilizzando un SDK per visualizzatore di documenti appositamente creato per Java." + +############################# Apps ############################ + +app_links: + enable: true + title: "App GroupDocs.Viewer NoCode" + description: "Applicazione online che ti consente di visualizzare oltre 180 formati di file popolari nel browser" + + items: + # loop + - icon: "groupdocs_viewer-app" + title: "GroupDocs.Viewer Total" + link: "https://products.groupdocs.app/viewer/total" + content: "Esplora un'applicazione online gratuita per visualizzare oltre 180 formati di file direttamente dal tuo browser Web preferito." + + # loop + - icon: "groupdocs_words-app" + title: "GroupDocs.Viewer DOCX" + link: "https://products.groupdocs.app/viewer/docx" + content: "Strumento basato sul Web per visualizzare facilmente file Microsoft Word su vari dispositivi." + + # loop + - icon: "groupdocs_pdf-app" + title: "GroupDocs.Viewer PDF" + link: "https://products.groupdocs.app/viewer/pdf" + content: "Apri e visualizza file PDF online con il visualizzatore PDF gratuito." + + +--- \ No newline at end of file diff --git a/content/viewer/_index.ja.md b/content/viewer/_index.ja.md new file mode 100644 index 00000000..af3b8284 --- /dev/null +++ b/content/viewer/_index.ja.md @@ -0,0 +1,402 @@ +--- +############################# Static ########################## +layout: "family" +date: 2023-12-20T06:39:57 +draft: false + +product: "Viewer" +product_tag: "viewer" + +############################# Head ############################ +head_title: "ドキュメント API のレンダリングと表示 |オンプレミスAPIとオンラインサービス" +head_description: "Word、PDF、Excel、Powerpoint、または画像ファイルを簡単かつ無料でレンダリングして表示します" + +############################# Header ########################## +title: "ドキュメントを簡単にレンダリングして表示する" +description: | + さまざまなファイルを PDF、HTML、画像にレンダリングするための強力なビューア API。 + + ファイル、ストリーム、URL、FTP サーバー、Amazon S3、Azure Blob Storage など、さまざまなソースからドキュメントを読み込みます。 + + レスポンシブな HTML ページを生成し、出力 PDF ファイルを保護し、必要に応じてページの並べ替え、ページの回転、メモやコメントのレンダリングを行います。 + +############################# Platforms ############################ +supported_platforms: + enable: true + head_title: "プラットフォームを選択してください" + title: "サポートされているプラ​​ットフォーム" + description: "GroupDocs.Viewer ライブラリは、次のオペレーティング システムとフレームワークをサポートしています。" + details_link_title: "もっと詳しく知る" + items: + # supported_platforms loop + - title: ".NET" + description: "GroupDocs.Viewer for .NET" + color: "blue" + tag: "net" + link: "/viewer/net/" + features_link: "https://docs.groupdocs.com/viewer/net/system-requirements/" + features: + # features loop + - content: ".NET Framework 4.6.2+
.NET Core 3.1
.NET 6+" + rows: "3" + # features loop + - content: "Windows, Linux" + rows: "1" + # features loop + - content: "180 以上のファイル形式" + rows: "1" + # features loop + - content: "ASP.NET Core の UI パッケージ" + rows: "1" + # features loop + - content: "ASP.NET WebForms Demo
ASP.NET MVC Demo
ASP.NET Core Demo" + rows: "3" + + # supported_platforms loop + - title: "Java" + description: "GroupDocs.Viewer for Java" + color: "red" + tag: "java" + link: "/viewer/java/" + features_link: "https://docs.groupdocs.com/viewer/java/system-requirements/" + features: + # features loop + - content: "J2SE 8.0 (1.8)+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "180 以上のファイル形式" + rows: "1" + # features loop + - content: "Spring および Dropwizard の UI パッケージ" + rows: "1" + # features loop + - content: "Spring Demo
Dropwizard demo" + rows: "3" + + # supported_platforms loop + - title: "Node.js" + description: "GroupDocs.Viewer for Node.js" + color: "green" + tag: "nodejs-java" + link: "/viewer/nodejs-java/" + features_link: "https://docs.groupdocs.com/viewer/nodejs-java/system-requirements/" + features: + # features loop + - content: "Node.js 16+
and J2SE 8.0 (1.8)+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "180 以上のファイル形式" + rows: "1" + # features loop + - content: "UI パッケージ - 近日公開予定" + rows: "1" + # features loop + - content: "デモ - 近日公開予定" + rows: "3" + + # supported_platforms loop + - title: "Python" + description: "GroupDocs.Viewer for Python" + color: "yellow" + tag: "python-net" + link: "/viewer/python-net/" + features_link: "https://docs.groupdocs.com/viewer/python-net/system-requirements/" + features: + # features loop + - content: "Python 3.9+
and .Net 6+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "180 以上のファイル形式" + rows: "1" + # features loop + - content: "UI パッケージ - 近日公開予定" + rows: "1" + # features loop + - content: "デモ - 近日公開予定" + rows: "3" + +############################# Features ############################ + +features: + enable: true + title: "GroupDocs.Viewer の機能セット" + description: "アプリケーションでさまざまなタイプのファイルを HTML、PDF、PNG、JPEG としてレンダリングし、サードパーティ ソフトウェアを使用せずに表示するための API。" + + items: + # feature loop + - icon: "view" + title: "ドキュメントと画像を表示する" + content: "ドキュメントを HTML、PDF、PNG、JPEG ファイルとしてレンダリングして表示します。" + + # feature loop + - icon: "password" + title: "保護された文書を開く" + content: "暗号化されたドキュメントを開くためのパスワードを指定します。" + + # feature loop + - icon: "load" + title: "どこからでもファイルをロード" + content: "さまざまなファイル、URL、FTP サーバー、Amazon S3 などからドキュメントを読み込みます。" + + # feature loop + - icon: "pages" + title: "すべてまたは特定のページをレンダリングする" + content: "レンダリングするページ番号の範囲を指定します。" + + +############################# Code samples ############################ +code_samples: + enable: true + title: "GroupDocs.Viewer コード サンプル" + description: "C#、Java、TypeScript での典型的な GroupDocs.Viewer 操作のいくつかの使用例" + items: + # code sample loop + - title: "DOCX ファイルを PDF にレンダリングする方法" + content: | + Microsoft Word やその他のソフトウェアをインストールしなくても、DOCX ドキュメントを PDF にレンダリングできます。 Web アプリケーションでもデスクトップ アプリケーションでも、.NET アプリケーション内で DOCX ファイルを簡単にロードして表示できます。以下は、DOCX ファイルを PDF にレンダリングする方法の例です。 + samples: + - language: "C#" + color: "blue" + content: | + ```csharp {style=abap} + // レンダリングするDOCXファイルをロードします + using (Viewer viewer = new Viewer("sample.docx")) + { + // DOCX を PDF ファイルにレンダリングする + PdfViewOptions viewOptions = new PdfViewOptions(); + viewer.View(viewOptions); + } + ``` + - language: "Java" + color: "red" + content: | + ```java {style=abap} + import com.groupdocs.viewer.Viewer; + import com.groupdocs.viewer.options.PdfViewOptions; + // ... + // レンダリングするDOCXファイルをロードします + try (Viewer viewer = new Viewer("sample.docx")) { + // DOCX を PDF ファイルにレンダリングする + PdfViewOptions viewOptions = new PdfViewOptions(); + viewer.view(viewOptions); + } + ``` + - language: "TypeScript" + color: "green" + content: | + ```javascript {style=abap} + // レンダリングするDOCXファイルをロードします + const viewer = new groupdocs.viewer.Viewer("sample.docx") + + // DOCX を PDF ファイルにレンダリングする + const viewOptions = groupdocs.viewer.PdfViewOptions(output.pdf) + viewer.view(viewOptions) + ``` + + - language: "Python" + color: "yellow" + content: | + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + // レンダリングするDOCXファイルをロードします + with gv.Viewer("sample.docx") as viewer: + + // DOCX を PDF ファイルにレンダリングする + viewOptions = gvo.PdfViewOptions("output.pdf") + viewer.view(viewOptions) + ``` + +############################# Formats ############################ +formats: + enable: true + title: "180 以上のファイル形式をサポート" + description: "GroupDocs.Viewer は、最も一般的な [ファイル形式](https://docs.groupdocs.com/viewer/net/supported-document-formats/) での操作をサポートしています。" + + +############################# Metrics ############################ + +metrics: + enable: true + title: "詳細な指標と統計的洞察" + description: "当社の主要な数値を詳細に分析し、当社の業績、影響、成長に関する包括的な指標と統計的洞察を提供します。" + + items: + # metrics loop + - number: "180+" + title: "サポートされている形式" + content: "ドキュメント、画像、CAD 図面などの 180 を超えるファイル形式を手間なく簡単に表示できます。当社の包括的な表示ソリューションを使用すると、互換性の壁を打ち破り、さまざまなファイルに簡単にアクセスできます。" + # metrics loop + - number: "1.0M" + title: "NuGetのダウンロード" + content: "当社の NuGet パッケージ ソリューションは、開発者コミュニティで信頼され広く採用されているリソースとなり、無数のプロジェクトにシームレスな統合と貴重な機能を提供します。" + + # metrics loop + - number: "10+" + title: "図書館" + content: "当社の製品には 10 以上のライブラリが含まれており、パフォーマンスを最適化するための高度な機能を提供します。これらのライブラリは、比類のない機能でさまざまな開発ニーズを満たすように設計されています。" + + # metrics loop + - number: "100+" + title: "幸せな顧客" + content: "世界中の最も象徴的なブランドにサービスを提供しています。何人もが GroupDocs.Viewer を愛用する理由を発見してください。シームレスなナビゲーション、便利なコラボレーション、比類のない使いやすさを体験してください。今すぐ参加してください!" + + +############################# Customers ############################ +# logo size X1 => 170:70 X2 => 340 : 140 + +customers: + enable: true + title: "幸せなお客様" + description: "GroupDocs ライブラリは、世界中の世界的に有名な有名ブランドで採用されています。" + + items: + # customers loop + - title: "BenQ Corporation" + logo: "benq" + # customers loop + - title: "Nasdaq Stock Market" + logo: "nasdaq" + # customers loop + - title: "AT&T Inc." + logo: "att" + # customers loop + - title: "AstraZeneca" + logo: "astrazeneca" + # customers loop + - title: "Central Bank of Argentina" + logo: "argentinacentralbank" + # customers loop + - title: "Roche Holding AG" + logo: "roche" + # customers loop + - title: "Capita" + logo: "capita" + # customers loop + - title: "Axa S.A." + logo: "axa" + # customers loop + - title: "Instructure Inc." + logo: "instructure" + # customers loop + - title: "Wipro" + logo: "wipro" + + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + + items: + # loop + - title: ".NET" + link: "/viewer/net/" + color: "blue" + # loop + - title: "Java" + link: "/viewer/java/" + color: "red" + # loop + - title: "Node.js" + link: "/viewer/nodejs-java/" + color: "green" + # loop + - title: "Python" + link: "/viewer/python-net/" + color: "yellow" + +############################# Faq ############################ + +faq: + enable: true + title: "よくある質問と懸念事項" + description: "FAQセクションで一般的な質問に対する回答を見つけて、質問や懸念事項にすぐに対処してください。" + + items: + # loop + - question: "購入前に GroupDocs 製品を評価できますか?" + answer: | + はい!すべての GroupDocs 製品には、リスクのない評価版が用意されています。開発者には、お客様のニーズを 100% 満たすことを確認するために、購入前に API をダウンロードして試してみることを強くお勧めします。 + # loop + - question: "GroupDocs は製品のデモンストレーションを行いますか?" + answer: | + いいえ、私たちは API と、可能な限り最も機能的で安定した製品を作ることに重点を置いています。製品をご自身でテストできるように、[一時ライセンス](https://purchase.groupdocs.com/temporary-license/) の形式で完全な機能の無料トライアルを提供しています。 + # loop + - question: "製品はどこでダウンロードできますか?" + answer: | + すべての製品は、[Web サイト](https://releases.groupdocs.com) からダウンロードできます。ソフトウェアの物理コピーを郵送することはありません。 + # loop + - question: "GroupDocs 開発者ライセンスはユーザーごとですか、それとも指定ユーザーごとですか?" + answer: | + GroupDocs Developer ライセンスは、指定ユーザーごとではなく、ユーザーごとに付与されます。私たちは、コーディング チームのメンバーは時間の経過とともに変わる可能性があり、そのたびにライセンスを更新する必要があるのは現実的ではないことを理解しています。 + # loop + - question: "アクティブな開発者のみにライセンスが必要ですか?たとえば、2 人の開発者からなるチームがシフト A で作業し、2 人の開発者からなる 2 番目のチームがシフト B で作業しているとします。この状況では、2 つまたは 4 つのライセンスが必要でしょうか?" + answer: | + プロジェクトに取り組むすべての開発者はライセンスを取得する必要があります。この状況では、GroupDocs はチームに 4 人のメンバーがいると見なします (たとえメンバーが異なる時間に働いていたとしても)。 + +############################# Cloud ############################ + +cloud_links: + enable: true + title: "GroupDocs.Viewer ローコード API" + description: "クラウドベースの REST API を使用して、あらゆるタイプのアプリケーションでドキュメントや画像の表示を高速化します。" + + items: + # loop + - icon: "groupdocs_viewer-for-curl" + title: "GroupDocs.Viewer Cloud for cURL" + link: "https://products.groupdocs.cloud/viewer/curl" + content: "cURL RESTful ドキュメント ビューア API を使用して、Microsoft Office、PDF、およびその他のさまざまな標準ファイル形式をアプリケーションで効率的にレンダリングして表示します。" + + # loop + - icon: "groupdocs_viewer-for-net" + title: "GroupDocs.Viewer Cloud for .NET" + link: "https://products.groupdocs.cloud/viewer/net" + content: "Cloud SDK for .NET を使用して、.NET アプリケーションのドキュメント表示機能を強化します。 HTML、PDF、または画像形式でドキュメントをシームレスに表示します。" + # loop + - icon: "groupdocs_viewer-for-java" + title: "GroupDocs.Viewer Cloud for Java" + link: "https://products.groupdocs.cloud/viewer/java" + content: "Java 専用の Document Viewer SDK を使用して、高度なドキュメント レンダリング機能を Java アプリケーションに統合します。" + +############################# Apps ############################ + +app_links: + enable: true + title: "GroupDocs.Viewer NoCode アプリ" + description: "180 以上の一般的なファイル形式をブラウザで表示できるオンライン アプリケーション" + + items: + # loop + - icon: "groupdocs_viewer-app" + title: "GroupDocs.Viewer Total" + link: "https://products.groupdocs.app/viewer/total" + content: "無料のオンライン アプリケーションを探索して、お好みの Web ブラウザから 180 以上のファイル形式を直接表示してください。" + + # loop + - icon: "groupdocs_words-app" + title: "GroupDocs.Viewer DOCX" + link: "https://products.groupdocs.app/viewer/docx" + content: "さまざまなデバイスで Microsoft Word ファイルを簡単に表示できる Web ベースのツール。" + + # loop + - icon: "groupdocs_pdf-app" + title: "GroupDocs.Viewer PDF" + link: "https://products.groupdocs.app/viewer/pdf" + content: "無料の PDF ビューアを使用して、オンラインで PDF ファイルを開いて表示します。" + + +--- \ No newline at end of file diff --git a/content/viewer/_index.ko.md b/content/viewer/_index.ko.md new file mode 100644 index 00000000..7ac7ada2 --- /dev/null +++ b/content/viewer/_index.ko.md @@ -0,0 +1,402 @@ +--- +############################# Static ########################## +layout: "family" +date: 2023-12-20T06:39:57 +draft: false + +product: "Viewer" +product_tag: "viewer" + +############################# Head ############################ +head_title: "문서 API 렌더링 및 보기 | 온프레미스 API 및 온라인 서비스" +head_description: "Word, PDF, Excel, Powerpoint 또는 이미지 파일을 무료로 쉽게 렌더링 및 보기" + +############################# Header ########################## +title: "쉽게 문서를 렌더링하고 확인하세요" +description: | + 다양한 파일을 PDF, HTML 및 이미지로 렌더링하는 강력한 뷰어 API입니다. + + 파일, 스트림, URL, FTP 서버, Amazon S3, Azure Blob Storage 등을 포함한 다양한 소스에서 문서를 로드합니다. + + 반응형 HTML 페이지를 생성하고, 출력 PDF 파일을 보호하고, 페이지 순서를 변경하고, 페이지를 회전하고, 필요한 경우 메모와 설명을 렌더링합니다. + +############################# Platforms ############################ +supported_platforms: + enable: true + head_title: "플랫폼을 선택하세요" + title: "지원되는 플랫폼" + description: "GroupDocs.Viewer 라이브러리는 다음 운영 체제 및 프레임워크를 지원합니다." + details_link_title: "더 알아보기" + items: + # supported_platforms loop + - title: ".NET" + description: "GroupDocs.Viewer for .NET" + color: "blue" + tag: "net" + link: "/viewer/net/" + features_link: "https://docs.groupdocs.com/viewer/net/system-requirements/" + features: + # features loop + - content: ".NET Framework 4.6.2+
.NET Core 3.1
.NET 6+" + rows: "3" + # features loop + - content: "Windows, Linux" + rows: "1" + # features loop + - content: "180개 이상의 파일 형식" + rows: "1" + # features loop + - content: "ASP.NET Core용 UI 패키지" + rows: "1" + # features loop + - content: "ASP.NET WebForms Demo
ASP.NET MVC Demo
ASP.NET Core Demo" + rows: "3" + + # supported_platforms loop + - title: "Java" + description: "GroupDocs.Viewer for Java" + color: "red" + tag: "java" + link: "/viewer/java/" + features_link: "https://docs.groupdocs.com/viewer/java/system-requirements/" + features: + # features loop + - content: "J2SE 8.0 (1.8)+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "180개 이상의 파일 형식" + rows: "1" + # features loop + - content: "Spring 및 Dropwizard용 UI 패키지" + rows: "1" + # features loop + - content: "Spring Demo
Dropwizard demo" + rows: "3" + + # supported_platforms loop + - title: "Node.js" + description: "GroupDocs.Viewer for Node.js" + color: "green" + tag: "nodejs-java" + link: "/viewer/nodejs-java/" + features_link: "https://docs.groupdocs.com/viewer/nodejs-java/system-requirements/" + features: + # features loop + - content: "Node.js 16+
and J2SE 8.0 (1.8)+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "180개 이상의 파일 형식" + rows: "1" + # features loop + - content: "UI 패키지 - 출시 예정" + rows: "1" + # features loop + - content: "데모 - 곧 출시 예정" + rows: "3" + + # supported_platforms loop + - title: "Python" + description: "GroupDocs.Viewer for Python" + color: "yellow" + tag: "python-net" + link: "/viewer/python-net/" + features_link: "https://docs.groupdocs.com/viewer/python-net/system-requirements/" + features: + # features loop + - content: "Python 3.9+
and .Net 6+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "180개 이상의 파일 형식" + rows: "1" + # features loop + - content: "UI 패키지 - 출시 예정" + rows: "1" + # features loop + - content: "데모 - 곧 출시 예정" + rows: "3" + +############################# Features ############################ + +features: + enable: true + title: "GroupDocs.Viewer의 기능 세트" + description: "타사 소프트웨어 없이 볼 수 있도록 애플리케이션에서 HTML, PDF, PNG 및 JPEG와 같은 다양한 유형의 파일을 렌더링하는 API입니다." + + items: + # feature loop + - icon: "view" + title: "문서 및 이미지 보기" + content: "문서를 HTML, PDF, PNG 및 JPEG 파일로 렌더링하여 봅니다." + + # feature loop + - icon: "password" + title: "보안 문서 열기" + content: "암호화된 문서를 열려면 비밀번호를 지정하세요." + + # feature loop + - icon: "load" + title: "어디서나 파일 로드" + content: "다양한 파일, URL, FTP 서버, Amazon S3 등에서 문서를 로드하세요." + + # feature loop + - icon: "pages" + title: "전체 또는 특정 페이지 렌더링" + content: "렌더링할 페이지 번호 범위를 지정합니다." + + +############################# Code samples ############################ +code_samples: + enable: true + title: "GroupDocs.Viewer 코드 샘플" + description: "C#, Java, TypeScript의 일반적인 GroupDocs.Viewer 작업의 일부 사용 사례" + items: + # code sample loop + - title: "DOCX 파일을 PDF로 렌더링하는 방법" + content: | + Microsoft Word나 기타 소프트웨어를 설치하지 않고도 DOCX 문서를 PDF로 렌더링할 수 있습니다. 웹 애플리케이션이든 데스크탑 애플리케이션이든 관계없이 .NET 애플리케이션 내에서 DOCX 파일을 쉽게 로드하고 볼 수 있습니다. 다음은 DOCX 파일을 PDF로 렌더링하는 방법의 예입니다. + samples: + - language: "C#" + color: "blue" + content: | + ```csharp {style=abap} + // 렌더링할 DOCX 파일 로드 + using (Viewer viewer = new Viewer("sample.docx")) + { + // DOCX를 PDF 파일로 렌더링 + PdfViewOptions viewOptions = new PdfViewOptions(); + viewer.View(viewOptions); + } + ``` + - language: "Java" + color: "red" + content: | + ```java {style=abap} + import com.groupdocs.viewer.Viewer; + import com.groupdocs.viewer.options.PdfViewOptions; + // ... + // 렌더링할 DOCX 파일 로드 + try (Viewer viewer = new Viewer("sample.docx")) { + // DOCX를 PDF 파일로 렌더링 + PdfViewOptions viewOptions = new PdfViewOptions(); + viewer.view(viewOptions); + } + ``` + - language: "TypeScript" + color: "green" + content: | + ```javascript {style=abap} + // 렌더링할 DOCX 파일 로드 + const viewer = new groupdocs.viewer.Viewer("sample.docx") + + // DOCX를 PDF 파일로 렌더링 + const viewOptions = groupdocs.viewer.PdfViewOptions(output.pdf) + viewer.view(viewOptions) + ``` + + - language: "Python" + color: "yellow" + content: | + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + // 렌더링할 DOCX 파일 로드 + with gv.Viewer("sample.docx") as viewer: + + // DOCX를 PDF 파일로 렌더링 + viewOptions = gvo.PdfViewOptions("output.pdf") + viewer.view(viewOptions) + ``` + +############################# Formats ############################ +formats: + enable: true + title: "180개 이상의 파일 형식 지원" + description: "GroupDocs.Viewer는 가장 널리 사용되는 [파일 형식](https://docs.groupdocs.com/viewer/net/supported-document-formats/) 작업을 지원합니다." + + +############################# Metrics ############################ + +metrics: + enable: true + title: "심층적인 지표 및 통계적 통찰력" + description: "당사의 성과, 영향 및 성장에 대한 포괄적인 지표와 통계적 통찰력을 제공하는 주요 수치에 대한 자세한 분석을 살펴보세요." + + items: + # metrics loop + - number: "180+" + title: "지원되는 형식" + content: "문서, 이미지, CAD 도면을 포함한 180개 이상의 파일 형식을 번거로움 없이 쉽게 볼 수 있습니다. 포괄적인 보기 솔루션을 사용하여 호환성 장벽을 허물고 다양한 파일에 쉽게 액세스하세요." + # metrics loop + - number: "1.0M" + title: "NuGet 다운로드" + content: "NuGet 패키지 솔루션은 수많은 프로젝트에 원활한 통합과 귀중한 기능을 제공하여 개발자 커뮤니티에서 신뢰할 수 있고 널리 채택되는 리소스가 되었습니다." + + # metrics loop + - number: "10+" + title: "도서관" + content: "우리 제품에는 성능 최적화를 위한 고급 기능을 제공하는 10개 이상의 라이브러리가 포함되어 있습니다. 이러한 라이브러리는 비교할 수 없는 기능으로 다양한 개발 요구 사항을 충족하도록 설계되었습니다." + + # metrics loop + - number: "100+" + title: "행복한 고객" + content: "전 세계에서 가장 상징적인 브랜드에 서비스를 제공합니다. 수백 명이 GroupDocs.Viewer를 좋아하는 이유를 알아보세요! 원활한 탐색, 편리한 공동작업, 비교할 수 없는 사용 편의성을 살펴보세요. 지금 가입하세요!" + + +############################# Customers ############################ +# logo size X1 => 170:70 X2 => 340 : 140 + +customers: + enable: true + title: "우리의 행복한 고객" + description: "GroupDocs 라이브러리는 전 세계적으로 유명하고 뛰어난 브랜드에서 사용됩니다." + + items: + # customers loop + - title: "BenQ Corporation" + logo: "benq" + # customers loop + - title: "Nasdaq Stock Market" + logo: "nasdaq" + # customers loop + - title: "AT&T Inc." + logo: "att" + # customers loop + - title: "AstraZeneca" + logo: "astrazeneca" + # customers loop + - title: "Central Bank of Argentina" + logo: "argentinacentralbank" + # customers loop + - title: "Roche Holding AG" + logo: "roche" + # customers loop + - title: "Capita" + logo: "capita" + # customers loop + - title: "Axa S.A." + logo: "axa" + # customers loop + - title: "Instructure Inc." + logo: "instructure" + # customers loop + - title: "Wipro" + logo: "wipro" + + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + + items: + # loop + - title: ".NET" + link: "/viewer/net/" + color: "blue" + # loop + - title: "Java" + link: "/viewer/java/" + color: "red" + # loop + - title: "Node.js" + link: "/viewer/nodejs-java/" + color: "green" + # loop + - title: "Python" + link: "/viewer/python-net/" + color: "yellow" + +############################# Faq ############################ + +faq: + enable: true + title: "일반적인 질문과 우려 사항" + description: "자주 묻는 질문(FAQ) 섹션에서 일반적인 문의에 대한 답변을 찾아 문의 사항과 우려 사항을 빠르게 해결하세요." + + items: + # loop + - question: "구매하기 전에 GroupDocs 제품을 평가할 수 있습니까?" + answer: | + 예! 모든 GroupDocs 제품에는 위험이 없는 평가판이 제공됩니다. 우리는 개발자들이 귀하의 요구 사항을 100% 충족할 수 있도록 구매하기 전에 API를 다운로드하고 사용해 볼 것을 강력히 권장합니다. + # loop + - question: "GroupDocs에서는 제품 시연을 합니까?" + answer: | + 아니요, 우리의 초점은 API와 가장 기능적이고 안정적인 제품을 만드는 것입니다. 우리는 [임시 라이선스](https://purchase.groupdocs.com/temporary-license/) 형태로 모든 기능을 갖춘 무료 평가판을 제공하므로 직접 제품을 테스트해 볼 수 있습니다. + # loop + - question: "제품은 어디서 다운로드할 수 있나요?" + answer: | + 모든 제품은 [웹사이트](https://releases.groupdocs.com)에서 다운로드할 수 있습니다. 우리는 소프트웨어의 물리적 사본을 우편으로 보내지 않습니다. + # loop + - question: "GroupDocs 개발자 라이센스는 사용자별인가요, 아니면 지정된 사용자별인가요?" + answer: | + GroupDocs 개발자 라이센스는 지정 사용자별이 아닌 사용자별입니다. 우리는 코딩 팀의 구성원이 시간이 지남에 따라 변경될 수 있으며 발생할 때마다 라이선스를 업데이트하는 것이 실용적이지 않다는 것을 알고 있습니다. + # loop + - question: "활동 중인 개발자에게만 라이선스가 필요합니까? 예를 들어, 두 명의 개발자로 구성된 팀이 A 교대 근무를 하고 두 번째 개발자 두 팀이 교대 B 근무를 하고 있습니다. 이 상황에서 라이선스가 2개 또는 4개가 필요합니까?" + answer: | + 프로젝트에 참여하는 모든 개발자는 라이선스를 취득해야 합니다. 이 상황에서 GroupDocs는 팀 구성원이 4명인 것으로 간주합니다(그들이 서로 다른 시간에 일하더라도). + +############################# Cloud ############################ + +cloud_links: + enable: true + title: "GroupDocs.Viewer 로우 코드 API" + description: "클라우드 기반 REST API를 사용하여 모든 유형의 애플리케이션에서 문서 또는 이미지 보기를 가속화하세요." + + items: + # loop + - icon: "groupdocs_viewer-for-curl" + title: "GroupDocs.Viewer Cloud for cURL" + link: "https://products.groupdocs.cloud/viewer/curl" + content: "cURL RESTful 문서 뷰어 API를 사용하여 애플리케이션에서 Microsoft Office, PDF 및 기타 다양한 표준 파일 형식을 효율적으로 렌더링하고 선보일 수 있습니다." + + # loop + - icon: "groupdocs_viewer-for-net" + title: "GroupDocs.Viewer Cloud for .NET" + link: "https://products.groupdocs.cloud/viewer/net" + content: ".NET용 Cloud SDK를 사용하여 .NET 애플리케이션의 문서 보기 기능을 향상하세요. HTML, PDF 또는 이미지 형식으로 문서를 원활하게 볼 수 있습니다." + # loop + - icon: "groupdocs_viewer-for-java" + title: "GroupDocs.Viewer Cloud for Java" + link: "https://products.groupdocs.cloud/viewer/java" + content: "특별히 제작된 Java용 Document Viewer SDK를 사용하여 고급 문서 렌더링 기능을 Java 애플리케이션에 통합하세요." + +############################# Apps ############################ + +app_links: + enable: true + title: "GroupDocs.Viewer NoCode 앱" + description: "브라우저에서 180개 이상의 인기 있는 파일 형식을 볼 수 있는 온라인 애플리케이션" + + items: + # loop + - icon: "groupdocs_viewer-app" + title: "GroupDocs.Viewer Total" + link: "https://products.groupdocs.app/viewer/total" + content: "무료 온라인 애플리케이션을 탐색하여 선호하는 웹 브라우저에서 직접 180개 이상의 파일 형식을 확인하세요." + + # loop + - icon: "groupdocs_words-app" + title: "GroupDocs.Viewer DOCX" + link: "https://products.groupdocs.app/viewer/docx" + content: "다양한 장치에서 Microsoft Word 파일을 쉽게 볼 수 있는 웹 기반 도구입니다." + + # loop + - icon: "groupdocs_pdf-app" + title: "GroupDocs.Viewer PDF" + link: "https://products.groupdocs.app/viewer/pdf" + content: "무료 PDF 뷰어를 사용하여 온라인으로 PDF 파일을 열고 봅니다." + + +--- \ No newline at end of file diff --git a/content/viewer/_index.pt.md b/content/viewer/_index.pt.md new file mode 100644 index 00000000..c5ac8791 --- /dev/null +++ b/content/viewer/_index.pt.md @@ -0,0 +1,402 @@ +--- +############################# Static ########################## +layout: "family" +date: 2023-12-20T06:39:57 +draft: false + +product: "Viewer" +product_tag: "viewer" + +############################# Head ############################ +head_title: "API de renderização e visualização de documentos | API local e serviço online" +head_description: "Renderize e visualize arquivos Word, PDF, Excel, Powerpoint ou imagem de forma fácil e gratuita" + +############################# Header ########################## +title: "Renderize e visualize documentos com facilidade" +description: | + API de visualizador poderosa para renderizar diferentes arquivos em PDF, HTML e imagem. + + Carregue documentos de diversas fontes, incluindo arquivos, streams, URLs, servidores FTP, Amazon S3, Azure Blob Storage e muito mais. + + Gere páginas HTML responsivas, proteja os arquivos PDF de saída e reordene suas páginas, gire páginas, renderize notas e comentários, se necessário. + +############################# Platforms ############################ +supported_platforms: + enable: true + head_title: "Escolha sua plataforma" + title: "Plataformas suportadas" + description: "A biblioteca GroupDocs.Viewer oferece suporte aos seguintes sistemas operacionais e estruturas" + details_link_title: "Saber mais" + items: + # supported_platforms loop + - title: ".NET" + description: "GroupDocs.Viewer for .NET" + color: "blue" + tag: "net" + link: "/viewer/net/" + features_link: "https://docs.groupdocs.com/viewer/net/system-requirements/" + features: + # features loop + - content: ".NET Framework 4.6.2+
.NET Core 3.1
.NET 6+" + rows: "3" + # features loop + - content: "Windows, Linux" + rows: "1" + # features loop + - content: "Mais de 180 formatos de arquivo" + rows: "1" + # features loop + - content: "Pacote de UI para ASP.NET Core" + rows: "1" + # features loop + - content: "ASP.NET WebForms Demo
ASP.NET MVC Demo
ASP.NET Core Demo" + rows: "3" + + # supported_platforms loop + - title: "Java" + description: "GroupDocs.Viewer for Java" + color: "red" + tag: "java" + link: "/viewer/java/" + features_link: "https://docs.groupdocs.com/viewer/java/system-requirements/" + features: + # features loop + - content: "J2SE 8.0 (1.8)+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "Mais de 180 formatos de arquivo" + rows: "1" + # features loop + - content: "Pacote UI para Spring e Dropwizard" + rows: "1" + # features loop + - content: "Spring Demo
Dropwizard demo" + rows: "3" + + # supported_platforms loop + - title: "Node.js" + description: "GroupDocs.Viewer for Node.js" + color: "green" + tag: "nodejs-java" + link: "/viewer/nodejs-java/" + features_link: "https://docs.groupdocs.com/viewer/nodejs-java/system-requirements/" + features: + # features loop + - content: "Node.js 16+
and J2SE 8.0 (1.8)+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "Mais de 180 formatos de arquivo" + rows: "1" + # features loop + - content: "Pacote UI – em breve" + rows: "1" + # features loop + - content: "Demonstração - em breve" + rows: "3" + + # supported_platforms loop + - title: "Python" + description: "GroupDocs.Viewer for Python" + color: "yellow" + tag: "python-net" + link: "/viewer/python-net/" + features_link: "https://docs.groupdocs.com/viewer/python-net/system-requirements/" + features: + # features loop + - content: "Python 3.9+
and .Net 6+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "Mais de 180 formatos de arquivo" + rows: "1" + # features loop + - content: "Pacote UI – em breve" + rows: "1" + # features loop + - content: "Demonstração - em breve" + rows: "3" + +############################# Features ############################ + +features: + enable: true + title: "Conjunto de recursos do GroupDocs.Viewer" + description: "API para renderizar arquivos de diferentes tipos como HTML, PDF, PNG e JPEG em aplicativos para visualizá-los sem software de terceiros." + + items: + # feature loop + - icon: "view" + title: "Ver documentos e imagens" + content: "Visualize documentos renderizando-os como arquivos HTML, PDF, PNG e JPEG." + + # feature loop + - icon: "password" + title: "Abra documentos protegidos" + content: "Especifique uma senha para abrir documentos criptografados." + + # feature loop + - icon: "load" + title: "Carregue arquivos de qualquer lugar" + content: "Carregue documentos de vários arquivos, URLs, servidores FTP, Amazon S3 e muito mais." + + # feature loop + - icon: "pages" + title: "Renderizar todas ou páginas específicas" + content: "Especifique um intervalo de números de páginas a serem renderizados." + + +############################# Code samples ############################ +code_samples: + enable: true + title: "Amostras de código GroupDocs.Viewer" + description: "Alguns casos de uso de operações típicas do GroupDocs.Viewer em C#, Java, TypeScript" + items: + # code sample loop + - title: "Como renderizar arquivos DOCX em PDF" + content: | + Renderize documentos DOCX em PDF sem o Microsoft Word ou outro software instalado. Carregue e visualize facilmente arquivos DOCX em seu aplicativo .NET, seja ele um aplicativo da web ou de desktop. Aqui está um exemplo de como renderizar um arquivo DOCX em PDF: + samples: + - language: "C#" + color: "blue" + content: | + ```csharp {style=abap} + // Carregar arquivo DOCX para renderizar + using (Viewer viewer = new Viewer("sample.docx")) + { + // Renderizar DOCX em um arquivo PDF + PdfViewOptions viewOptions = new PdfViewOptions(); + viewer.View(viewOptions); + } + ``` + - language: "Java" + color: "red" + content: | + ```java {style=abap} + import com.groupdocs.viewer.Viewer; + import com.groupdocs.viewer.options.PdfViewOptions; + // ... + // Carregar arquivo DOCX para renderizar + try (Viewer viewer = new Viewer("sample.docx")) { + // Renderizar DOCX em um arquivo PDF + PdfViewOptions viewOptions = new PdfViewOptions(); + viewer.view(viewOptions); + } + ``` + - language: "TypeScript" + color: "green" + content: | + ```javascript {style=abap} + // Carregar arquivo DOCX para renderizar + const viewer = new groupdocs.viewer.Viewer("sample.docx") + + // Renderizar DOCX em um arquivo PDF + const viewOptions = groupdocs.viewer.PdfViewOptions(output.pdf) + viewer.view(viewOptions) + ``` + + - language: "Python" + color: "yellow" + content: | + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + // Carregar arquivo DOCX para renderizar + with gv.Viewer("sample.docx") as viewer: + + // Renderizar DOCX em um arquivo PDF + viewOptions = gvo.PdfViewOptions("output.pdf") + viewer.view(viewOptions) + ``` + +############################# Formats ############################ +formats: + enable: true + title: "Mais de 180 formatos de arquivo suportados" + description: "GroupDocs.Viewer suporta operações com os mais populares [formatos de arquivo](https://docs.groupdocs.com/viewer/net/supported-document-formats/)" + + +############################# Metrics ############################ + +metrics: + enable: true + title: "Métricas detalhadas e insights estatísticos" + description: "Mergulhe em uma análise detalhada de nossos principais números, fornecendo métricas abrangentes e insights estatísticos sobre nossas conquistas, impacto e crescimento." + + items: + # metrics loop + - number: "180+" + title: "Formatos suportados" + content: "Visualize facilmente mais de 180 formatos de arquivo, incluindo documentos, imagens e desenhos CAD, sem complicações. Quebre barreiras de compatibilidade e acesse diversos arquivos sem esforço com nossa solução de visualização abrangente." + # metrics loop + - number: "1.0M" + title: "Downloads do NuGet" + content: "Nossa solução de pacote NuGet se tornou um recurso confiável e amplamente adotado na comunidade de desenvolvedores, fornecendo integração perfeita e funcionalidades valiosas para inúmeros projetos." + + # metrics loop + - number: "10+" + title: "Bibliotecas" + content: "Nosso produto inclui mais de 10 bibliotecas, oferecendo recursos avançados para otimizar o desempenho. Essas bibliotecas são projetadas para atender a diferentes necessidades de desenvolvimento com recursos incomparáveis." + + # metrics loop + - number: "100+" + title: "Clientes satisfeitos" + content: "Servindo as marcas mais icônicas do mundo. Descubra por que centenas de pessoas adoram o GroupDocs.Viewer! Explore navegação perfeita, colaboração conveniente e facilidade de uso incomparável. Entrar!" + + +############################# Customers ############################ +# logo size X1 => 170:70 X2 => 340 : 140 + +customers: + enable: true + title: "Nossos clientes satisfeitos" + description: "As bibliotecas GroupDocs são empregadas por marcas renomadas e distintas em todo o mundo." + + items: + # customers loop + - title: "BenQ Corporation" + logo: "benq" + # customers loop + - title: "Nasdaq Stock Market" + logo: "nasdaq" + # customers loop + - title: "AT&T Inc." + logo: "att" + # customers loop + - title: "AstraZeneca" + logo: "astrazeneca" + # customers loop + - title: "Central Bank of Argentina" + logo: "argentinacentralbank" + # customers loop + - title: "Roche Holding AG" + logo: "roche" + # customers loop + - title: "Capita" + logo: "capita" + # customers loop + - title: "Axa S.A." + logo: "axa" + # customers loop + - title: "Instructure Inc." + logo: "instructure" + # customers loop + - title: "Wipro" + logo: "wipro" + + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + + items: + # loop + - title: ".NET" + link: "/viewer/net/" + color: "blue" + # loop + - title: "Java" + link: "/viewer/java/" + color: "red" + # loop + - title: "Node.js" + link: "/viewer/nodejs-java/" + color: "green" + # loop + - title: "Python" + link: "/viewer/python-net/" + color: "yellow" + +############################# Faq ############################ + +faq: + enable: true + title: "Perguntas e preocupações comuns" + description: "Encontre respostas para perguntas comuns em nossa seção de perguntas frequentes para responder rapidamente às suas dúvidas e preocupações." + + items: + # loop + - question: "Posso avaliar os produtos GroupDocs antes de comprá-los?" + answer: | + Sim! Todos os produtos GroupDocs têm uma versão de avaliação livre de riscos disponível. Recomendamos fortemente que os desenvolvedores baixem e experimentem nossas APIs antes de comprar para garantir que elas atenderão 100% às suas necessidades. + # loop + - question: "O GroupDocs faz demonstrações de produtos?" + answer: | + Não, nosso foco está em nossas APIs e em tornar os produtos mais funcionais e estáveis ​​possíveis. Oferecemos testes totalmente funcionais e gratuitos na forma de uma [licença temporária](https://purchase.groupdocs.com/temporary-license/) para que você possa testar o produto por si mesmo. + # loop + - question: "Onde posso baixar o produto?" + answer: | + Todos os produtos estão disponíveis para download no [website](https://releases.groupdocs.com). Não enviamos cópias físicas do nosso software por correio. + # loop + - question: "As licenças de desenvolvedor do GroupDocs são por usuário ou por usuário nomeado?" + answer: | + As licenças do GroupDocs Developer são por usuário, não por usuário nomeado. Entendemos que os membros de uma equipe de codificação podem mudar com o tempo e que não é prático ter que atualizar o licenciamento sempre que isso ocorre. + # loop + - question: "Precisamos de licenciamento apenas para desenvolvedores ativos? Por exemplo, temos uma equipe de dois desenvolvedores trabalhando no turno A e uma segunda equipe de dois desenvolvedores trabalhando no turno B… nesta situação, precisamos de duas ou quatro licenças?" + answer: | + Todos os desenvolvedores que estão trabalhando no projeto precisam ser licenciados. Nessa situação, o GroupDocs vê sua equipe como tendo quatro membros (mesmo que trabalhem em horários diferentes). + +############################# Cloud ############################ + +cloud_links: + enable: true + title: "APIs de baixo código GroupDocs.Viewer" + description: "Acelere a visualização de documentos ou imagens em qualquer tipo de aplicativo com nossa API REST baseada em nuvem" + + items: + # loop + - icon: "groupdocs_viewer-for-curl" + title: "GroupDocs.Viewer Cloud for cURL" + link: "https://products.groupdocs.cloud/viewer/curl" + content: "Use a API do visualizador de documentos RESTful cURL para renderizar e exibir com eficiência o Microsoft Office, PDF e vários outros formatos de arquivo padrão em seus aplicativos." + + # loop + - icon: "groupdocs_viewer-for-net" + title: "GroupDocs.Viewer Cloud for .NET" + link: "https://products.groupdocs.cloud/viewer/net" + content: "Aprimore os recursos de visualização de documentos em aplicativos .NET com o Cloud SDK for .NET. Visualize documentos perfeitamente em formatos HTML, PDF ou de imagem." + # loop + - icon: "groupdocs_viewer-for-java" + title: "GroupDocs.Viewer Cloud for Java" + link: "https://products.groupdocs.cloud/viewer/java" + content: "Integre recursos avançados de renderização de documentos em seus aplicativos Java usando um SDK do Document Viewer para Java desenvolvido especificamente." + +############################# Apps ############################ + +app_links: + enable: true + title: "Aplicativos GroupDocs.Viewer NoCode" + description: "Aplicativo on-line que permite visualizar mais de 180 formatos de arquivo populares no navegador" + + items: + # loop + - icon: "groupdocs_viewer-app" + title: "GroupDocs.Viewer Total" + link: "https://products.groupdocs.app/viewer/total" + content: "Explore um aplicativo on-line gratuito para visualizar mais de 180 formatos de arquivo diretamente do seu navegador preferido." + + # loop + - icon: "groupdocs_words-app" + title: "GroupDocs.Viewer DOCX" + link: "https://products.groupdocs.app/viewer/docx" + content: "Ferramenta baseada na Web para visualizar arquivos do Microsoft Word sem esforço em vários dispositivos." + + # loop + - icon: "groupdocs_pdf-app" + title: "GroupDocs.Viewer PDF" + link: "https://products.groupdocs.app/viewer/pdf" + content: "Abra e visualize arquivos PDF online com o visualizador de PDF gratuito." + + +--- \ No newline at end of file diff --git a/content/viewer/_index.ru.md b/content/viewer/_index.ru.md new file mode 100644 index 00000000..1ecb5fd4 --- /dev/null +++ b/content/viewer/_index.ru.md @@ -0,0 +1,402 @@ +--- +############################# Static ########################## +layout: "family" +date: 2023-12-20T06:39:57 +draft: false + +product: "Viewer" +product_tag: "viewer" + +############################# Head ############################ +head_title: "API рендеринга и просмотра документов | Локальный API и онлайн-сервис" +head_description: "Легко и бесплатно визуализируйте и просматривайте файлы Word, PDF, Excel, Powerpoint или изображения." + +############################# Header ########################## +title: "С легкостью визуализируйте и просматривайте документы" +description: | + Мощный API-интерфейс просмотра для преобразования различных файлов в PDF, HTML и изображения. + + Загружайте документы из различных источников, включая файлы, потоки, URL-адреса, FTP-серверы, Amazon S3, хранилище BLOB-объектов Azure и многое другое. + + Создавайте адаптивные HTML-страницы, защищайте выходные PDF-файлы и меняйте порядок их страниц, поворачивайте страницы, отображайте примечания и комментарии, если это необходимо. + +############################# Platforms ############################ +supported_platforms: + enable: true + head_title: "Выберите свою платформу" + title: "Поддерживаемые платформы" + description: "Библиотека GroupDocs.Viewer поддерживает следующие операционные системы и платформы." + details_link_title: "Узнать больше" + items: + # supported_platforms loop + - title: ".NET" + description: "GroupDocs.Viewer for .NET" + color: "blue" + tag: "net" + link: "/viewer/net/" + features_link: "https://docs.groupdocs.com/viewer/net/system-requirements/" + features: + # features loop + - content: ".NET Framework 4.6.2+
.NET Core 3.1
.NET 6+" + rows: "3" + # features loop + - content: "Windows, Linux" + rows: "1" + # features loop + - content: "Более 180 форматов файлов" + rows: "1" + # features loop + - content: "Пакет пользовательского интерфейса для ASP.NET Core" + rows: "1" + # features loop + - content: "ASP.NET WebForms Demo
ASP.NET MVC Demo
ASP.NET Core Demo" + rows: "3" + + # supported_platforms loop + - title: "Java" + description: "GroupDocs.Viewer for Java" + color: "red" + tag: "java" + link: "/viewer/java/" + features_link: "https://docs.groupdocs.com/viewer/java/system-requirements/" + features: + # features loop + - content: "J2SE 8.0 (1.8)+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "Более 180 форматов файлов" + rows: "1" + # features loop + - content: "Пакет пользовательского интерфейса для Spring и Dropwizard" + rows: "1" + # features loop + - content: "Spring Demo
Dropwizard demo" + rows: "3" + + # supported_platforms loop + - title: "Node.js" + description: "GroupDocs.Viewer for Node.js" + color: "green" + tag: "nodejs-java" + link: "/viewer/nodejs-java/" + features_link: "https://docs.groupdocs.com/viewer/nodejs-java/system-requirements/" + features: + # features loop + - content: "Node.js 16+
and J2SE 8.0 (1.8)+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "Более 180 форматов файлов" + rows: "1" + # features loop + - content: "Пакет пользовательского интерфейса – скоро появится" + rows: "1" + # features loop + - content: "Демо-версия - скоро" + rows: "3" + + # supported_platforms loop + - title: "Python" + description: "GroupDocs.Viewer for Python" + color: "yellow" + tag: "python-net" + link: "/viewer/python-net/" + features_link: "https://docs.groupdocs.com/viewer/python-net/system-requirements/" + features: + # features loop + - content: "Python 3.9+
and .Net 6+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "Более 180 форматов файлов" + rows: "1" + # features loop + - content: "Пакет пользовательского интерфейса – скоро появится" + rows: "1" + # features loop + - content: "Демо-версия - скоро" + rows: "3" + +############################# Features ############################ + +features: + enable: true + title: "Набор функций GroupDocs.Viewer" + description: "API для рендеринга файлов различных типов, таких как HTML, PDF, PNG и JPEG, в приложениях для их просмотра без стороннего программного обеспечения." + + items: + # feature loop + - icon: "view" + title: "Просмотр документов и изображений" + content: "Просматривайте документы, отображая их в виде файлов HTML, PDF, PNG и JPEG." + + # feature loop + - icon: "password" + title: "Открытие защищенных документов" + content: "Укажите пароль для открытия зашифрованных документов." + + # feature loop + - icon: "load" + title: "Загружайте файлы откуда угодно" + content: "Загружайте документы из различных файлов, URL-адресов, FTP-серверов, Amazon S3 и т. д." + + # feature loop + - icon: "pages" + title: "Рендеринг всех или определенных страниц" + content: "Укажите диапазон номеров страниц для отображения." + + +############################# Code samples ############################ +code_samples: + enable: true + title: "Примеры кода GroupDocs.Viewer" + description: "Некоторые варианты использования GroupDocs.Viewer в C#, Java, TypeScript" + items: + # code sample loop + - title: "Как преобразовать файлы DOCX в PDF" + content: | + Преобразуйте документы DOCX в PDF без установки Microsoft Word или другого программного обеспечения. Легко загружайте и просматривайте файлы DOCX в своем приложении .NET, будь то веб-приложение или настольное приложение. Вот пример того, как преобразовать файл DOCX в PDF: + samples: + - language: "C#" + color: "blue" + content: | + ```csharp {style=abap} + // Загрузите файл DOCX для рендеринга + using (Viewer viewer = new Viewer("sample.docx")) + { + // Преобразование DOCX в PDF-файл + PdfViewOptions viewOptions = new PdfViewOptions(); + viewer.View(viewOptions); + } + ``` + - language: "Java" + color: "red" + content: | + ```java {style=abap} + import com.groupdocs.viewer.Viewer; + import com.groupdocs.viewer.options.PdfViewOptions; + // ... + // Загрузите файл DOCX для рендеринга + try (Viewer viewer = new Viewer("sample.docx")) { + // Преобразование DOCX в PDF-файл + PdfViewOptions viewOptions = new PdfViewOptions(); + viewer.view(viewOptions); + } + ``` + - language: "TypeScript" + color: "green" + content: | + ```javascript {style=abap} + // Загрузите файл DOCX для рендеринга + const viewer = new groupdocs.viewer.Viewer("sample.docx") + + // Преобразование DOCX в PDF-файл + const viewOptions = groupdocs.viewer.PdfViewOptions(output.pdf) + viewer.view(viewOptions) + ``` + + - language: "Python" + color: "yellow" + content: | + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + // Загрузите файл DOCX для рендеринга + with gv.Viewer("sample.docx") as viewer: + + // Преобразование DOCX в PDF-файл + viewOptions = gvo.PdfViewOptions("output.pdf") + viewer.view(viewOptions) + ``` + +############################# Formats ############################ +formats: + enable: true + title: "Поддерживается более 180 форматов файлов" + description: "GroupDocs.Viewer поддерживает работу с наиболее популярными [форматами файлов](https://docs.groupdocs.com/viewer/net/supported-document-formats/)" + + +############################# Metrics ############################ + +metrics: + enable: true + title: "Углубленные показатели и статистические данные" + description: "Ознакомьтесь с подробной разбивкой наших ключевых показателей, предоставив комплексные показатели и статистическую информацию о наших достижениях, влиянии и росте." + + items: + # metrics loop + - number: "180+" + title: "Поддерживаемые форматы" + content: "Легко и без проблем просматривайте файлы более 180 форматов, включая документы, изображения и чертежи САПР. Преодолевайте барьеры совместимости и легко получайте доступ к разнообразным файлам с помощью нашего комплексного решения для просмотра." + # metrics loop + - number: "1.0M" + title: "Загрузки NuGet" + content: "Наше пакетное решение NuGet стало надежным и широко распространенным ресурсом в сообществе разработчиков, обеспечивая плавную интеграцию и ценную функциональность для бесчисленного количества проектов." + + # metrics loop + - number: "10+" + title: "Библиотеки" + content: "Наш продукт включает более 10 библиотек, предлагающих расширенные функции для оптимизации производительности. Эти библиотеки предназначены для удовлетворения различных потребностей разработки и обладают непревзойденными возможностями." + + # metrics loop + - number: "100+" + title: "Счастливые клиенты" + content: "Обслуживание самых знаковых брендов по всему миру. Узнайте, почему сотни людей любят GroupDocs.Viewer! Откройте для себя безупречную навигацию, удобное сотрудничество и непревзойденную простоту использования. Присоединяйся сейчас!" + + +############################# Customers ############################ +# logo size X1 => 170:70 X2 => 340 : 140 + +customers: + enable: true + title: "Наши счастливые клиенты" + description: "Библиотеки GroupDocs используются всемирно известными и выдающимися брендами по всему миру." + + items: + # customers loop + - title: "BenQ Corporation" + logo: "benq" + # customers loop + - title: "Nasdaq Stock Market" + logo: "nasdaq" + # customers loop + - title: "AT&T Inc." + logo: "att" + # customers loop + - title: "AstraZeneca" + logo: "astrazeneca" + # customers loop + - title: "Central Bank of Argentina" + logo: "argentinacentralbank" + # customers loop + - title: "Roche Holding AG" + logo: "roche" + # customers loop + - title: "Capita" + logo: "capita" + # customers loop + - title: "Axa S.A." + logo: "axa" + # customers loop + - title: "Instructure Inc." + logo: "instructure" + # customers loop + - title: "Wipro" + logo: "wipro" + + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + + items: + # loop + - title: ".NET" + link: "/viewer/net/" + color: "blue" + # loop + - title: "Java" + link: "/viewer/java/" + color: "red" + # loop + - title: "Node.js" + link: "/viewer/nodejs-java/" + color: "green" + # loop + - title: "Python" + link: "/viewer/python-net/" + color: "yellow" + +############################# Faq ############################ + +faq: + enable: true + title: "Распространенные вопросы и опасения" + description: "Найдите ответы на распространенные вопросы в нашем разделе часто задаваемых вопросов, чтобы быстро решить ваши вопросы и проблемы." + + items: + # loop + - question: "Могу ли я оценить продукты GroupDocs перед покупкой?" + answer: | + Да! Все продукты GroupDocs имеют безрисковую ознакомительную версию. Мы настоятельно рекомендуем разработчикам загрузить и опробовать наши API перед покупкой, чтобы убедиться, что они удовлетворят ваши потребности на 100%. + # loop + - question: "Проводит ли GroupDocs демонстрации продуктов?" + answer: | + Нет, мы сосредоточены на наших API и создании максимально функциональных и стабильных продуктов. Мы предлагаем полнофункциональные и бесплатные пробные версии в форме [временной лицензии](https://purchase.groupdocs.com/temporary-license/), чтобы вы могли опробовать продукт самостоятельно. + # loop + - question: "Где я могу скачать продукт?" + answer: | + Все продукты доступны для загрузки с [веб-сайта](https://releases.groupdocs.com). Мы не отправляем физические копии нашего программного обеспечения по почте. + # loop + - question: "Лицензии разработчика GroupDocs предоставляются для каждого пользователя или для имени пользователя?" + answer: | + Лицензии разработчика GroupDocs предоставляются на пользователя, а не на именованного пользователя. Мы понимаем, что члены команды программистов могут меняться со временем и что обновлять лицензию каждый раз, когда это происходит, нецелесообразно. + # loop + - question: "Нужно ли нам лицензирование только для активных разработчиков? Например, у нас есть команда из двух разработчиков, работающих в смену А, и вторая команда из двух разработчиков, работающих в смену Б… в этой ситуации нам нужны две или четыре лицензии?" + answer: | + Все разработчики, работающие над проектом, должны иметь лицензию. В этой ситуации GroupDocs считает, что в вашей команде четыре участника (даже если они работают в разное время). + +############################# Cloud ############################ + +cloud_links: + enable: true + title: "API-интерфейсы GroupDocs.Viewer с минимальным кодом" + description: "Ускорьте просмотр документов или изображений в любом типе приложений с помощью нашего облачного REST API." + + items: + # loop + - icon: "groupdocs_viewer-for-curl" + title: "GroupDocs.Viewer Cloud for cURL" + link: "https://products.groupdocs.cloud/viewer/curl" + content: "Используйте API-интерфейс просмотра документов RESTful cURL для эффективной визуализации и демонстрации Microsoft Office, PDF и различных других стандартных форматов файлов в ваших приложениях." + + # loop + - icon: "groupdocs_viewer-for-net" + title: "GroupDocs.Viewer Cloud for .NET" + link: "https://products.groupdocs.cloud/viewer/net" + content: "Расширьте возможности просмотра документов в приложениях .NET с помощью Cloud SDK для .NET. Беспрепятственный просмотр документов в форматах HTML, PDF или изображений." + # loop + - icon: "groupdocs_viewer-for-java" + title: "GroupDocs.Viewer Cloud for Java" + link: "https://products.groupdocs.cloud/viewer/java" + content: "Интегрируйте расширенные возможности рендеринга документов в свои приложения Java с помощью специального SDK Document Viewer для Java." + +############################# Apps ############################ + +app_links: + enable: true + title: "Приложения GroupDocs.Viewer NoCode" + description: "Онлайн-приложение, позволяющее просматривать более 180 популярных форматов файлов в браузере." + + items: + # loop + - icon: "groupdocs_viewer-app" + title: "GroupDocs.Viewer Total" + link: "https://products.groupdocs.app/viewer/total" + content: "Изучите бесплатное онлайн-приложение для просмотра файлов более 180 форматов прямо из предпочитаемого вами веб-браузера." + + # loop + - icon: "groupdocs_words-app" + title: "GroupDocs.Viewer DOCX" + link: "https://products.groupdocs.app/viewer/docx" + content: "Веб-инструмент для удобного просмотра файлов Microsoft Word на различных устройствах." + + # loop + - icon: "groupdocs_pdf-app" + title: "GroupDocs.Viewer PDF" + link: "https://products.groupdocs.app/viewer/pdf" + content: "Открывайте и просматривайте PDF-файлы онлайн с помощью бесплатной программы просмотра PDF-файлов." + + +--- \ No newline at end of file diff --git a/content/viewer/_index.th.md b/content/viewer/_index.th.md new file mode 100644 index 00000000..07c95a92 --- /dev/null +++ b/content/viewer/_index.th.md @@ -0,0 +1,402 @@ +--- +############################# Static ########################## +layout: "family" +date: 2023-12-20T06:39:57 +draft: false + +product: "Viewer" +product_tag: "viewer" + +############################# Head ############################ +head_title: "API แสดงผลและดูเอกสาร | บน Premise API และบริการออนไลน์" +head_description: "เรนเดอร์และดูไฟล์ Word, PDF, Excel, Powerpoint หรือ Image ได้อย่างง่ายดายและฟรี" + +############################# Header ########################## +title: "เรนเดอร์และดูเอกสารได้อย่างง่ายดาย" +description: | + Viewer API อันทรงพลังเพื่อเรนเดอร์ไฟล์ต่าง ๆ เป็น PDF, HTML และรูปภาพ + + โหลดเอกสารจากแหล่งต่างๆ รวมถึงไฟล์ สตรีม URL เซิร์ฟเวอร์ FTP, Amazon S3, Azure Blob Storage และอื่นๆ + + สร้างหน้า HTML ที่ตอบสนอง ป้องกันไฟล์ PDF เอาท์พุต และจัดลำดับหน้าใหม่ หมุนหน้า แสดงผลบันทึกย่อและความคิดเห็นหากจำเป็น + +############################# Platforms ############################ +supported_platforms: + enable: true + head_title: "เลือกแพลตฟอร์มของคุณ" + title: "แพลตฟอร์มที่รองรับ" + description: "ไลบรารี GroupDocs.Viewer รองรับระบบปฏิบัติการและเฟรมเวิร์กต่อไปนี้" + details_link_title: "เรียนรู้เพิ่มเติม" + items: + # supported_platforms loop + - title: ".NET" + description: "GroupDocs.Viewer for .NET" + color: "blue" + tag: "net" + link: "/viewer/net/" + features_link: "https://docs.groupdocs.com/viewer/net/system-requirements/" + features: + # features loop + - content: ".NET Framework 4.6.2+
.NET Core 3.1
.NET 6+" + rows: "3" + # features loop + - content: "Windows, Linux" + rows: "1" + # features loop + - content: "รูปแบบไฟล์มากกว่า 180 รูปแบบ" + rows: "1" + # features loop + - content: "แพ็คเกจ UI สำหรับ ASP.NET Core" + rows: "1" + # features loop + - content: "ASP.NET WebForms Demo
ASP.NET MVC Demo
ASP.NET Core Demo" + rows: "3" + + # supported_platforms loop + - title: "Java" + description: "GroupDocs.Viewer for Java" + color: "red" + tag: "java" + link: "/viewer/java/" + features_link: "https://docs.groupdocs.com/viewer/java/system-requirements/" + features: + # features loop + - content: "J2SE 8.0 (1.8)+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "รูปแบบไฟล์มากกว่า 180 รูปแบบ" + rows: "1" + # features loop + - content: "แพ็คเกจ UI สำหรับ Spring และ Dropwizard" + rows: "1" + # features loop + - content: "Spring Demo
Dropwizard demo" + rows: "3" + + # supported_platforms loop + - title: "Node.js" + description: "GroupDocs.Viewer for Node.js" + color: "green" + tag: "nodejs-java" + link: "/viewer/nodejs-java/" + features_link: "https://docs.groupdocs.com/viewer/nodejs-java/system-requirements/" + features: + # features loop + - content: "Node.js 16+
and J2SE 8.0 (1.8)+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "รูปแบบไฟล์มากกว่า 180 รูปแบบ" + rows: "1" + # features loop + - content: "แพ็คเกจ UI - เร็วๆ นี้" + rows: "1" + # features loop + - content: "การสาธิต - เร็ว ๆ นี้" + rows: "3" + + # supported_platforms loop + - title: "Python" + description: "GroupDocs.Viewer for Python" + color: "yellow" + tag: "python-net" + link: "/viewer/python-net/" + features_link: "https://docs.groupdocs.com/viewer/python-net/system-requirements/" + features: + # features loop + - content: "Python 3.9+
and .Net 6+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "รูปแบบไฟล์มากกว่า 180 รูปแบบ" + rows: "1" + # features loop + - content: "แพ็คเกจ UI - เร็วๆ นี้" + rows: "1" + # features loop + - content: "การสาธิต - เร็ว ๆ นี้" + rows: "3" + +############################# Features ############################ + +features: + enable: true + title: "ชุดคุณลักษณะของ GroupDocs.Viewer" + description: "API เพื่อเรนเดอร์ไฟล์ประเภทต่างๆ เช่น HTML, PDF, PNG และ JPEG ในแอปพลิเคชันเพื่อดูโดยไม่ต้องใช้ซอฟต์แวร์บุคคลที่สาม" + + items: + # feature loop + - icon: "view" + title: "ดูเอกสารและรูปภาพ" + content: "ดูเอกสารโดยแสดงผลเป็นไฟล์ HTML, PDF, PNG และ JPEG" + + # feature loop + - icon: "password" + title: "เปิดเอกสารที่มีการรักษาความปลอดภัย" + content: "ระบุรหัสผ่านเพื่อเปิดเอกสารที่เข้ารหัส" + + # feature loop + - icon: "load" + title: "โหลดไฟล์ได้จากทุกที่" + content: "โหลดเอกสารจากไฟล์ต่างๆ, URL, เซิร์ฟเวอร์ FTP, Amazon S3 และอื่นๆ" + + # feature loop + - icon: "pages" + title: "แสดงผลทั้งหมดหรือเฉพาะหน้า" + content: "ระบุช่วงของหมายเลขหน้าที่จะแสดงผล" + + +############################# Code samples ############################ +code_samples: + enable: true + title: "ตัวอย่างโค้ด GroupDocs.Viewer" + description: "กรณีการใช้งานบางส่วนของการดำเนินการ GroupDocs.Viewer ทั่วไปใน C#, Java, TypeScript" + items: + # code sample loop + - title: "วิธีเรนเดอร์ไฟล์ DOCX เป็น PDF" + content: | + เรนเดอร์เอกสาร DOCX เป็น PDF โดยไม่ต้องติดตั้ง Microsoft Word หรือซอฟต์แวร์อื่นๆ โหลดและดูไฟล์ DOCX ภายในแอปพลิเคชัน .NET ของคุณได้อย่างง่ายดาย ไม่ว่าจะเป็นแอปพลิเคชันบนเว็บหรือเดสก์ท็อป ต่อไปนี้คือตัวอย่างวิธีเรนเดอร์ไฟล์ DOCX เป็น PDF: + samples: + - language: "C#" + color: "blue" + content: | + ```csharp {style=abap} + // โหลดไฟล์ DOCX เพื่อเรนเดอร์ + using (Viewer viewer = new Viewer("sample.docx")) + { + // เรนเดอร์ DOCX เป็นไฟล์ PDF + PdfViewOptions viewOptions = new PdfViewOptions(); + viewer.View(viewOptions); + } + ``` + - language: "Java" + color: "red" + content: | + ```java {style=abap} + import com.groupdocs.viewer.Viewer; + import com.groupdocs.viewer.options.PdfViewOptions; + // ... + // โหลดไฟล์ DOCX เพื่อเรนเดอร์ + try (Viewer viewer = new Viewer("sample.docx")) { + // เรนเดอร์ DOCX เป็นไฟล์ PDF + PdfViewOptions viewOptions = new PdfViewOptions(); + viewer.view(viewOptions); + } + ``` + - language: "TypeScript" + color: "green" + content: | + ```javascript {style=abap} + // โหลดไฟล์ DOCX เพื่อเรนเดอร์ + const viewer = new groupdocs.viewer.Viewer("sample.docx") + + // เรนเดอร์ DOCX เป็นไฟล์ PDF + const viewOptions = groupdocs.viewer.PdfViewOptions(output.pdf) + viewer.view(viewOptions) + ``` + + - language: "Python" + color: "yellow" + content: | + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + // โหลดไฟล์ DOCX เพื่อเรนเดอร์ + with gv.Viewer("sample.docx") as viewer: + + // เรนเดอร์ DOCX เป็นไฟล์ PDF + viewOptions = gvo.PdfViewOptions("output.pdf") + viewer.view(viewOptions) + ``` + +############################# Formats ############################ +formats: + enable: true + title: "รองรับไฟล์มากกว่า 180 รูปแบบ" + description: "GroupDocs.Viewer รองรับการทำงานด้วย [รูปแบบไฟล์](https://docs.groupdocs.com/viewer/net/supported-document-formats/) ยอดนิยมที่สุด" + + +############################# Metrics ############################ + +metrics: + enable: true + title: "ตัวชี้วัดเชิงลึกและข้อมูลเชิงลึกทางสถิติ" + description: "เจาะลึกรายละเอียดตัวเลขหลักของเรา โดยให้ตัวชี้วัดที่ครอบคลุมและข้อมูลเชิงลึกทางสถิติเกี่ยวกับความสำเร็จ ผลกระทบ และการเติบโตของเรา" + + items: + # metrics loop + - number: "180+" + title: "รูปแบบที่รองรับ" + content: "ดูรูปแบบไฟล์ได้มากกว่า 180 รูปแบบได้อย่างง่ายดาย รวมถึงเอกสาร รูปภาพ และแบบร่าง CAD โดยไม่ยุ่งยาก ทำลายอุปสรรคด้านความเข้ากันได้และเข้าถึงไฟล์ที่หลากหลายได้อย่างง่ายดายด้วยโซลูชันการรับชมที่ครอบคลุมของเรา" + # metrics loop + - number: "1.0M" + title: "ดาวน์โหลด NuGet" + content: "โซลูชันแพ็คเกจ NuGet ของเราได้กลายเป็นทรัพยากรที่เชื่อถือได้และนำไปใช้อย่างกว้างขวางในชุมชนนักพัฒนา โดยให้การบูรณาการที่ราบรื่นและฟังก์ชันการทำงานที่มีคุณค่าสำหรับโครงการนับไม่ถ้วน" + + # metrics loop + - number: "10+" + title: "ห้องสมุด" + content: "ผลิตภัณฑ์ของเราประกอบด้วยไลบรารีมากกว่า 10 ไลบรารี ที่นำเสนอคุณลักษณะขั้นสูงเพื่อเพิ่มประสิทธิภาพการทำงาน ไลบรารีเหล่านี้ได้รับการออกแบบมาเพื่อตอบสนองความต้องการในการพัฒนาที่แตกต่างกันด้วยความสามารถที่เหนือชั้น" + + # metrics loop + - number: "100+" + title: "ลูกค้ามีความสุข" + content: "ให้บริการแบรนด์ที่โดดเด่นที่สุดทั่วโลก ค้นพบว่าทำไมคนนับร้อยถึงชื่นชอบ GroupDocs.Viewer! สำรวจการนำทางที่ราบรื่น การทำงานร่วมกันที่สะดวกสบาย และความสะดวกในการใช้งานที่เหนือชั้น เข้าร่วมเดี๋ยวนี้!" + + +############################# Customers ############################ +# logo size X1 => 170:70 X2 => 340 : 140 + +customers: + enable: true + title: "ลูกค้าที่มีความสุขของเรา" + description: "ห้องสมุด GroupDocs ได้รับการว่าจ้างจากแบรนด์ที่มีชื่อเสียงและโดดเด่นระดับโลกทั่วโลก" + + items: + # customers loop + - title: "BenQ Corporation" + logo: "benq" + # customers loop + - title: "Nasdaq Stock Market" + logo: "nasdaq" + # customers loop + - title: "AT&T Inc." + logo: "att" + # customers loop + - title: "AstraZeneca" + logo: "astrazeneca" + # customers loop + - title: "Central Bank of Argentina" + logo: "argentinacentralbank" + # customers loop + - title: "Roche Holding AG" + logo: "roche" + # customers loop + - title: "Capita" + logo: "capita" + # customers loop + - title: "Axa S.A." + logo: "axa" + # customers loop + - title: "Instructure Inc." + logo: "instructure" + # customers loop + - title: "Wipro" + logo: "wipro" + + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + + items: + # loop + - title: ".NET" + link: "/viewer/net/" + color: "blue" + # loop + - title: "Java" + link: "/viewer/java/" + color: "red" + # loop + - title: "Node.js" + link: "/viewer/nodejs-java/" + color: "green" + # loop + - title: "Python" + link: "/viewer/python-net/" + color: "yellow" + +############################# Faq ############################ + +faq: + enable: true + title: "คำถามและข้อกังวลทั่วไป" + description: "ค้นหาคำตอบสำหรับคำถามทั่วไปในส่วนคำถามที่พบบ่อยของเราเพื่อตอบข้อสงสัยและข้อกังวลของคุณอย่างรวดเร็ว" + + items: + # loop + - question: "ฉันสามารถประเมินผลิตภัณฑ์ GroupDocs ก่อนซื้อได้หรือไม่" + answer: | + ใช่! ผลิตภัณฑ์ GroupDocs ทั้งหมดมีเวอร์ชันประเมินผลที่ปราศจากความเสี่ยง เราขอแนะนำให้นักพัฒนาดาวน์โหลดและลองใช้ API ของเราก่อนซื้อเพื่อให้แน่ใจว่าจะตอบสนองความต้องการของคุณได้ 100% + # loop + - question: "GroupDocs สาธิตผลิตภัณฑ์หรือไม่" + answer: | + ไม่ เรามุ่งเน้นที่ API ของเราและทำให้ผลิตภัณฑ์มีฟังก์ชันการทำงานและมีเสถียรภาพมากที่สุดเท่าที่จะเป็นไปได้ เรานำเสนอการทดลองใช้งานได้เต็มรูปแบบและทดลองใช้ฟรีในรูปแบบของ [ใบอนุญาตชั่วคราว](https://purchase.groupdocs.com/temporary-license/) เพื่อให้คุณสามารถทดสอบผลิตภัณฑ์ได้ด้วยตัวเอง + # loop + - question: "ฉันจะดาวน์โหลดผลิตภัณฑ์ได้ที่ไหน?" + answer: | + ผลิตภัณฑ์ทั้งหมดพร้อมให้ดาวน์โหลดจาก [เว็บไซต์](https://releases.groupdocs.com) เราไม่ส่งสำเนาทางกายภาพของซอฟต์แวร์ของเราทางไปรษณีย์ + # loop + - question: "สิทธิ์การใช้งานของนักพัฒนา GroupDocs ต่อผู้ใช้หรือต่อผู้ใช้ที่ระบุชื่อ" + answer: | + สิทธิ์การใช้งาน GroupDocs Developer เป็นแบบต่อผู้ใช้ ไม่ใช่ต่อผู้ใช้ที่ระบุชื่อ เราเข้าใจดีว่าสมาชิกในทีมเขียนโค้ดอาจเปลี่ยนแปลงไปตามกาลเวลา และไม่ใช่เรื่องจริงที่จะต้องอัปเดตใบอนุญาตในแต่ละครั้งที่เกิดขึ้น + # loop + - question: "เราจำเป็นต้องมีใบอนุญาตสำหรับนักพัฒนาที่ใช้งานอยู่เท่านั้นหรือไม่? ตัวอย่างเช่น เรามีทีมนักพัฒนาสองคนที่ทำงานเกี่ยวกับกะ A และทีมที่สองประกอบด้วยนักพัฒนาสองคนที่ทำงานเกี่ยวกับกะ B … ในสถานการณ์นี้ เราจำเป็นต้องมีใบอนุญาตสองหรือสี่ใบหรือไม่" + answer: | + นักพัฒนาทุกคนที่ทำงานในโปรเจ็กต์นี้จำเป็นต้องได้รับใบอนุญาต ในสถานการณ์นี้ GroupDocs มองว่าทีมของคุณมีสมาชิกสี่คน (แม้ว่าจะทำงานคนละเวลาก็ตาม) + +############################# Cloud ############################ + +cloud_links: + enable: true + title: "GroupDocs.Viewer API แบบโค้ดต่ำ" + description: "เร่งความเร็วในการดูเอกสารหรือรูปภาพในแอปพลิเคชันทุกประเภทด้วย REST API บนคลาวด์ของเรา" + + items: + # loop + - icon: "groupdocs_viewer-for-curl" + title: "GroupDocs.Viewer Cloud for cURL" + link: "https://products.groupdocs.cloud/viewer/curl" + content: "ใช้ API โปรแกรมดูเอกสาร cURL RESTful เพื่อเรนเดอร์และแสดง Microsoft Office, PDF และรูปแบบไฟล์มาตรฐานอื่นๆ ในแอปพลิเคชันของคุณอย่างมีประสิทธิภาพ" + + # loop + - icon: "groupdocs_viewer-for-net" + title: "GroupDocs.Viewer Cloud for .NET" + link: "https://products.groupdocs.cloud/viewer/net" + content: "ปรับปรุงความสามารถในการดูเอกสารในแอปพลิเคชัน .NET ด้วย Cloud SDK สำหรับ .NET ดูเอกสารได้อย่างราบรื่นในรูปแบบ HTML, PDF หรือรูปภาพ" + # loop + - icon: "groupdocs_viewer-for-java" + title: "GroupDocs.Viewer Cloud for Java" + link: "https://products.groupdocs.cloud/viewer/java" + content: "ผสานรวมความสามารถในการเรนเดอร์เอกสารขั้นสูงเข้ากับแอปพลิเคชัน Java ของคุณโดยใช้ Document Viewer SDK ที่สร้างขึ้นตามวัตถุประสงค์เฉพาะสำหรับ Java" + +############################# Apps ############################ + +app_links: + enable: true + title: "แอพ GroupDocs.Viewer NoCode" + description: "แอปพลิเคชันออนไลน์ที่ให้คุณดูรูปแบบไฟล์ยอดนิยมมากกว่า 180 รูปแบบในเบราว์เซอร์" + + items: + # loop + - icon: "groupdocs_viewer-app" + title: "GroupDocs.Viewer Total" + link: "https://products.groupdocs.app/viewer/total" + content: "สำรวจแอปพลิเคชันออนไลน์ฟรีเพื่อดูรูปแบบไฟล์มากกว่า 180 รูปแบบได้โดยตรงจากเว็บเบราว์เซอร์ที่คุณต้องการ" + + # loop + - icon: "groupdocs_words-app" + title: "GroupDocs.Viewer DOCX" + link: "https://products.groupdocs.app/viewer/docx" + content: "เครื่องมือบนเว็บสำหรับการดูไฟล์ Microsoft Word บนอุปกรณ์ต่างๆ ได้อย่างง่ายดาย" + + # loop + - icon: "groupdocs_pdf-app" + title: "GroupDocs.Viewer PDF" + link: "https://products.groupdocs.app/viewer/pdf" + content: "เปิดและดูไฟล์ PDF ออนไลน์ด้วยโปรแกรมดู PDF ฟรี" + + +--- \ No newline at end of file diff --git a/content/viewer/_index.uk.md b/content/viewer/_index.uk.md new file mode 100644 index 00000000..fc40664c --- /dev/null +++ b/content/viewer/_index.uk.md @@ -0,0 +1,402 @@ +--- +############################# Static ########################## +layout: "family" +date: 2023-12-20T06:39:57 +draft: false + +product: "Viewer" +product_tag: "viewer" + +############################# Head ############################ +head_title: "API візуалізації та перегляду документів | On Premise API та онлайн-сервіс" +head_description: "Відтворюйте та переглядайте файли Word, PDF, Excel, Powerpoint або зображення легко та безкоштовно" + +############################# Header ########################## +title: "З легкістю візуалізуйте та переглядайте документи" +description: | + Потужний API перегляду для рендерингу різних файлів у PDF, HTML і зображення. + + Завантажуйте документи з різних джерел, зокрема файлів, потоків, URL-адрес, FTP-серверів, Amazon S3, Azure Blob Storage тощо. + + Створюйте адаптивні HTML-сторінки, захищайте вихідні PDF-файли та змінюйте порядок їхніх сторінок, повертайте сторінки, візуалізуйте примітки та коментарі, якщо потрібно. + +############################# Platforms ############################ +supported_platforms: + enable: true + head_title: "Виберіть свою платформу" + title: "Підтримувані платформи" + description: "Бібліотека GroupDocs.Viewer підтримує такі операційні системи та фреймворки" + details_link_title: "Вивчайте більше" + items: + # supported_platforms loop + - title: ".NET" + description: "GroupDocs.Viewer for .NET" + color: "blue" + tag: "net" + link: "/viewer/net/" + features_link: "https://docs.groupdocs.com/viewer/net/system-requirements/" + features: + # features loop + - content: ".NET Framework 4.6.2+
.NET Core 3.1
.NET 6+" + rows: "3" + # features loop + - content: "Windows, Linux" + rows: "1" + # features loop + - content: "180+ форматів файлів" + rows: "1" + # features loop + - content: "Пакет інтерфейсу користувача для ASP.NET Core" + rows: "1" + # features loop + - content: "ASP.NET WebForms Demo
ASP.NET MVC Demo
ASP.NET Core Demo" + rows: "3" + + # supported_platforms loop + - title: "Java" + description: "GroupDocs.Viewer for Java" + color: "red" + tag: "java" + link: "/viewer/java/" + features_link: "https://docs.groupdocs.com/viewer/java/system-requirements/" + features: + # features loop + - content: "J2SE 8.0 (1.8)+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "180+ форматів файлів" + rows: "1" + # features loop + - content: "Пакет інтерфейсу користувача для Spring і Dropwizard" + rows: "1" + # features loop + - content: "Spring Demo
Dropwizard demo" + rows: "3" + + # supported_platforms loop + - title: "Node.js" + description: "GroupDocs.Viewer for Node.js" + color: "green" + tag: "nodejs-java" + link: "/viewer/nodejs-java/" + features_link: "https://docs.groupdocs.com/viewer/nodejs-java/system-requirements/" + features: + # features loop + - content: "Node.js 16+
and J2SE 8.0 (1.8)+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "180+ форматів файлів" + rows: "1" + # features loop + - content: "Пакет інтерфейсу користувача - незабаром" + rows: "1" + # features loop + - content: "Демо - незабаром" + rows: "3" + + # supported_platforms loop + - title: "Python" + description: "GroupDocs.Viewer for Python" + color: "yellow" + tag: "python-net" + link: "/viewer/python-net/" + features_link: "https://docs.groupdocs.com/viewer/python-net/system-requirements/" + features: + # features loop + - content: "Python 3.9+
and .Net 6+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "180+ форматів файлів" + rows: "1" + # features loop + - content: "Пакет інтерфейсу користувача - незабаром" + rows: "1" + # features loop + - content: "Демо - незабаром" + rows: "3" + +############################# Features ############################ + +features: + enable: true + title: "Набір функцій GroupDocs.Viewer" + description: "API для візуалізації файлів різних типів як HTML, PDF, PNG і JPEG у програмах для їх перегляду без стороннього програмного забезпечення." + + items: + # feature loop + - icon: "view" + title: "Перегляд документів і зображень" + content: "Переглядайте документи, відтворюючи їх як файли HTML, PDF, PNG і JPEG." + + # feature loop + - icon: "password" + title: "Відкрийте захищені документи" + content: "Вкажіть пароль для відкриття зашифрованих документів." + + # feature loop + - icon: "load" + title: "Завантажуйте файли з будь-якого місця" + content: "Завантажуйте документи з різних файлів, URL-адрес, FTP-серверів, Amazon S3 тощо." + + # feature loop + - icon: "pages" + title: "Виводити всі або окремі сторінки" + content: "Укажіть діапазон номерів сторінок, які потрібно відобразити." + + +############################# Code samples ############################ +code_samples: + enable: true + title: "Приклади коду GroupDocs.Viewer" + description: "Деякі випадки використання типових операцій GroupDocs.Viewer у C#, Java, TypeScript" + items: + # code sample loop + - title: "Як конвертувати файли DOCX у PDF" + content: | + Перетворюйте документи DOCX у PDF без встановлення Microsoft Word чи іншого програмного забезпечення. Легко завантажуйте та переглядайте файли DOCX у своїй програмі .NET, будь то веб-програма чи настільна програма. Ось приклад того, як перевести файл DOCX у PDF: + samples: + - language: "C#" + color: "blue" + content: | + ```csharp {style=abap} + // Завантажте файл DOCX для візуалізації + using (Viewer viewer = new Viewer("sample.docx")) + { + // Перетворення DOCX у файл PDF + PdfViewOptions viewOptions = new PdfViewOptions(); + viewer.View(viewOptions); + } + ``` + - language: "Java" + color: "red" + content: | + ```java {style=abap} + import com.groupdocs.viewer.Viewer; + import com.groupdocs.viewer.options.PdfViewOptions; + // ... + // Завантажте файл DOCX для візуалізації + try (Viewer viewer = new Viewer("sample.docx")) { + // Перетворення DOCX у файл PDF + PdfViewOptions viewOptions = new PdfViewOptions(); + viewer.view(viewOptions); + } + ``` + - language: "TypeScript" + color: "green" + content: | + ```javascript {style=abap} + // Завантажте файл DOCX для візуалізації + const viewer = new groupdocs.viewer.Viewer("sample.docx") + + // Перетворення DOCX у файл PDF + const viewOptions = groupdocs.viewer.PdfViewOptions(output.pdf) + viewer.view(viewOptions) + ``` + + - language: "Python" + color: "yellow" + content: | + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + // Завантажте файл DOCX для візуалізації + with gv.Viewer("sample.docx") as viewer: + + // Перетворення DOCX у файл PDF + viewOptions = gvo.PdfViewOptions("output.pdf") + viewer.view(viewOptions) + ``` + +############################# Formats ############################ +formats: + enable: true + title: "Підтримується понад 180 форматів файлів" + description: "GroupDocs.Viewer підтримує роботу з найпопулярнішими [форматами файлів](https://docs.groupdocs.com/viewer/net/supported-document-formats/)" + + +############################# Metrics ############################ + +metrics: + enable: true + title: "Поглиблені показники та статистичні дані" + description: "Ознайомтеся з детальною розбивкою наших ключових цифр, надаючи вичерпні показники та статистичну інформацію про наші досягнення, вплив і зростання." + + items: + # metrics loop + - number: "180+" + title: "Підтримувані формати" + content: "Легко переглядайте понад 180 форматів файлів, включаючи документи, зображення та креслення САПР, без проблем. Долайте бар’єри сумісності та легко отримуйте доступ до різноманітних файлів за допомогою нашого комплексного рішення для перегляду." + # metrics loop + - number: "1.0M" + title: "Завантаження NuGet" + content: "Наше пакетне рішення NuGet стало надійним і широко поширеним ресурсом у спільноті розробників, забезпечуючи повну інтеграцію та цінні функції для незліченних проектів." + + # metrics loop + - number: "10+" + title: "Бібліотеки" + content: "Наш продукт містить понад 10 бібліотек, які пропонують розширені функції для оптимізації продуктивності. Ці бібліотеки створені для задоволення різноманітних потреб розробки з неперевершеними можливостями." + + # metrics loop + - number: "100+" + title: "Задоволені клієнти" + content: "Обслуговування найвідоміших брендів у всьому світі. Дізнайтеся, чому сотні люблять GroupDocs.Viewer! Відкрийте для себе зручну навігацію, зручну співпрацю та неперевершену простоту використання. Приєднуйся зараз!" + + +############################# Customers ############################ +# logo size X1 => 170:70 X2 => 340 : 140 + +customers: + enable: true + title: "Наші щасливі клієнти" + description: "Бібліотеки GroupDocs використовують всесвітньо відомі та видатні бренди по всьому світу." + + items: + # customers loop + - title: "BenQ Corporation" + logo: "benq" + # customers loop + - title: "Nasdaq Stock Market" + logo: "nasdaq" + # customers loop + - title: "AT&T Inc." + logo: "att" + # customers loop + - title: "AstraZeneca" + logo: "astrazeneca" + # customers loop + - title: "Central Bank of Argentina" + logo: "argentinacentralbank" + # customers loop + - title: "Roche Holding AG" + logo: "roche" + # customers loop + - title: "Capita" + logo: "capita" + # customers loop + - title: "Axa S.A." + logo: "axa" + # customers loop + - title: "Instructure Inc." + logo: "instructure" + # customers loop + - title: "Wipro" + logo: "wipro" + + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або подайте запит на ліцензію" + + items: + # loop + - title: ".NET" + link: "/viewer/net/" + color: "blue" + # loop + - title: "Java" + link: "/viewer/java/" + color: "red" + # loop + - title: "Node.js" + link: "/viewer/nodejs-java/" + color: "green" + # loop + - title: "Python" + link: "/viewer/python-net/" + color: "yellow" + +############################# Faq ############################ + +faq: + enable: true + title: "Поширені запитання та проблеми" + description: "Знайдіть відповіді на поширені запити в нашому розділі поширених запитань, щоб швидко вирішити свої запити та проблеми." + + items: + # loop + - question: "Чи можу я оцінити продукти GroupDocs перед покупкою?" + answer: | + Так! Для всіх продуктів GroupDocs доступна безризикова оціночна версія. Ми наполегливо рекомендуємо розробникам завантажити та спробувати наші API перед покупкою, щоб переконатися, що вони на 100% задовольнять ваші потреби. + # loop + - question: "Чи проводить GroupDocs демонстрації продуктів?" + answer: | + Ні, ми зосереджені на наших API та створенні максимально функціональних і стабільних продуктів. Ми пропонуємо повністю функціональні та безкоштовні пробні версії у формі [тимчасової ліцензії](https://purchase.groupdocs.com/temporary-license/), тож ви можете випробувати продукт самостійно. + # loop + - question: "Де я можу завантажити продукт?" + answer: | + Усі продукти доступні для завантаження з [веб-сайту](https://releases.groupdocs.com). Ми не надсилаємо фізичні копії нашого програмного забезпечення поштою. + # loop + - question: "Ліцензії розробника GroupDocs надаються на одного користувача чи на одного користувача?" + answer: | + Ліцензії GroupDocs Developer надаються на користувача, а не на користувача. Ми розуміємо, що члени команди програмістів можуть змінюватися з часом і що непрактично оновлювати ліцензії кожного разу, коли це відбувається. + # loop + - question: "Чи потрібна нам ліцензія лише для активних розробників? Наприклад, у нас є команда з двох розробників, які працюють у зміну А, і друга команда з двох розробників, які працюють у зміну Б… у цій ситуації нам потрібні дві чи чотири ліцензії?" + answer: | + Усі розробники, які працюють над проектом, повинні мати ліцензію. У цій ситуації GroupDocs вважає, що ваша команда складається з чотирьох учасників (хоча вони працюють у різний час). + +############################# Cloud ############################ + +cloud_links: + enable: true + title: "API із низьким кодом GroupDocs.Viewer" + description: "Прискоріть перегляд документів або зображень у будь-якому додатку за допомогою нашого хмарного REST API" + + items: + # loop + - icon: "groupdocs_viewer-for-curl" + title: "GroupDocs.Viewer Cloud for cURL" + link: "https://products.groupdocs.cloud/viewer/curl" + content: "Використовуйте API переглядача документів cURL RESTful для ефективного візуалізації та демонстрації файлів Microsoft Office, PDF та інших стандартних форматів у своїх програмах." + + # loop + - icon: "groupdocs_viewer-for-net" + title: "GroupDocs.Viewer Cloud for .NET" + link: "https://products.groupdocs.cloud/viewer/net" + content: "Розширення можливостей перегляду документів у програмах .NET за допомогою Cloud SDK для .NET. Легко переглядайте документи у форматах HTML, PDF або зображення." + # loop + - icon: "groupdocs_viewer-for-java" + title: "GroupDocs.Viewer Cloud for Java" + link: "https://products.groupdocs.cloud/viewer/java" + content: "Інтегруйте розширені можливості візуалізації документів у свої програми Java за допомогою спеціально розробленого пакета SDK для перегляду документів для Java." + +############################# Apps ############################ + +app_links: + enable: true + title: "Програми GroupDocs.Viewer NoCode" + description: "Онлайн-програма, яка дозволяє переглядати понад 180 популярних форматів файлів у браузері" + + items: + # loop + - icon: "groupdocs_viewer-app" + title: "GroupDocs.Viewer Total" + link: "https://products.groupdocs.app/viewer/total" + content: "Дослідіть безкоштовну онлайн-програму для перегляду понад 180 форматів файлів безпосередньо з улюбленого веб-браузера." + + # loop + - icon: "groupdocs_words-app" + title: "GroupDocs.Viewer DOCX" + link: "https://products.groupdocs.app/viewer/docx" + content: "Веб-інструмент для легкого перегляду файлів Microsoft Word на різних пристроях." + + # loop + - icon: "groupdocs_pdf-app" + title: "GroupDocs.Viewer PDF" + link: "https://products.groupdocs.app/viewer/pdf" + content: "Відкривайте та переглядайте PDF-файли онлайн за допомогою безкоштовного засобу перегляду PDF." + + +--- \ No newline at end of file diff --git a/content/viewer/_index.vi.md b/content/viewer/_index.vi.md new file mode 100644 index 00000000..ad055092 --- /dev/null +++ b/content/viewer/_index.vi.md @@ -0,0 +1,402 @@ +--- +############################# Static ########################## +layout: "family" +date: 2023-12-20T06:39:57 +draft: false + +product: "Viewer" +product_tag: "viewer" + +############################# Head ############################ +head_title: "API kết xuất và xem tài liệu | API tại chỗ và dịch vụ trực tuyến" +head_description: "Kết xuất và xem các tệp Word, PDF, Excel, Powerpoint hoặc Hình ảnh một cách dễ dàng và miễn phí" + +############################# Header ########################## +title: "Hiển thị và xem tài liệu một cách dễ dàng" +description: | + API trình xem mạnh mẽ để hiển thị các tệp khác nhau thành PDF, HTML và Hình ảnh. + + Tải tài liệu từ nhiều nguồn khác nhau, bao gồm tệp, luồng, URL, máy chủ FTP, Amazon S3, Azure Blob Storage, v.v. + + Tạo các trang HTML đáp ứng, bảo vệ các tệp PDF đầu ra và sắp xếp lại các trang của chúng, xoay trang, hiển thị ghi chú và nhận xét nếu cần. + +############################# Platforms ############################ +supported_platforms: + enable: true + head_title: "Chọn nền tảng của bạn" + title: "Nền tảng được hỗ trợ" + description: "Thư viện GroupDocs.Viewer hỗ trợ các hệ điều hành và framework sau" + details_link_title: "Tìm hiểu thêm" + items: + # supported_platforms loop + - title: ".NET" + description: "GroupDocs.Viewer for .NET" + color: "blue" + tag: "net" + link: "/viewer/net/" + features_link: "https://docs.groupdocs.com/viewer/net/system-requirements/" + features: + # features loop + - content: ".NET Framework 4.6.2+
.NET Core 3.1
.NET 6+" + rows: "3" + # features loop + - content: "Windows, Linux" + rows: "1" + # features loop + - content: "Hơn 180 định dạng tệp" + rows: "1" + # features loop + - content: "Gói giao diện người dùng cho ASP.NET Core" + rows: "1" + # features loop + - content: "ASP.NET WebForms Demo
ASP.NET MVC Demo
ASP.NET Core Demo" + rows: "3" + + # supported_platforms loop + - title: "Java" + description: "GroupDocs.Viewer for Java" + color: "red" + tag: "java" + link: "/viewer/java/" + features_link: "https://docs.groupdocs.com/viewer/java/system-requirements/" + features: + # features loop + - content: "J2SE 8.0 (1.8)+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "Hơn 180 định dạng tệp" + rows: "1" + # features loop + - content: "Gói giao diện người dùng cho Spring và Dropwizard" + rows: "1" + # features loop + - content: "Spring Demo
Dropwizard demo" + rows: "3" + + # supported_platforms loop + - title: "Node.js" + description: "GroupDocs.Viewer for Node.js" + color: "green" + tag: "nodejs-java" + link: "/viewer/nodejs-java/" + features_link: "https://docs.groupdocs.com/viewer/nodejs-java/system-requirements/" + features: + # features loop + - content: "Node.js 16+
and J2SE 8.0 (1.8)+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "Hơn 180 định dạng tệp" + rows: "1" + # features loop + - content: "Gói giao diện người dùng - sắp ra mắt" + rows: "1" + # features loop + - content: "Bản demo - sắp ra mắt" + rows: "3" + + # supported_platforms loop + - title: "Python" + description: "GroupDocs.Viewer for Python" + color: "yellow" + tag: "python-net" + link: "/viewer/python-net/" + features_link: "https://docs.groupdocs.com/viewer/python-net/system-requirements/" + features: + # features loop + - content: "Python 3.9+
and .Net 6+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "Hơn 180 định dạng tệp" + rows: "1" + # features loop + - content: "Gói giao diện người dùng - sắp ra mắt" + rows: "1" + # features loop + - content: "Bản demo - sắp ra mắt" + rows: "3" + +############################# Features ############################ + +features: + enable: true + title: "Bộ tính năng của GroupDocs.Viewer" + description: "API để hiển thị các loại tệp khác nhau dưới dạng HTML, PDF, PNG và JPEG trong các ứng dụng để xem chúng mà không cần phần mềm của bên thứ ba." + + items: + # feature loop + - icon: "view" + title: "Xem tài liệu và hình ảnh" + content: "Xem tài liệu bằng cách hiển thị chúng dưới dạng tệp HTML, PDF, PNG và JPEG." + + # feature loop + - icon: "password" + title: "Mở tài liệu được bảo mật" + content: "Chỉ định mật khẩu để mở tài liệu được mã hóa." + + # feature loop + - icon: "load" + title: "Tải tập tin từ mọi nơi" + content: "Tải tài liệu từ nhiều tệp, URL, máy chủ FTP, Amazon S3, v.v." + + # feature loop + - icon: "pages" + title: "Hiển thị tất cả hoặc các trang cụ thể" + content: "Chỉ định một phạm vi số trang sẽ được hiển thị." + + +############################# Code samples ############################ +code_samples: + enable: true + title: "Mẫu mã GroupDocs.Viewer" + description: "Một số trường hợp sử dụng các thao tác GroupDocs.Viewer điển hình trong C#, Java, TypeScript" + items: + # code sample loop + - title: "Cách hiển thị tệp DOCX thành PDF" + content: | + Hiển thị tài liệu DOCX thành PDF mà không cần cài đặt Microsoft Word hoặc phần mềm khác. Dễ dàng tải và xem các tệp DOCX trong ứng dụng .NET của bạn, cho dù đó là ứng dụng web hay máy tính để bàn. Dưới đây là ví dụ về cách hiển thị tệp DOCX thành PDF: + samples: + - language: "C#" + color: "blue" + content: | + ```csharp {style=abap} + // Tải tệp DOCX để kết xuất + using (Viewer viewer = new Viewer("sample.docx")) + { + // Kết xuất DOCX thành tệp PDF + PdfViewOptions viewOptions = new PdfViewOptions(); + viewer.View(viewOptions); + } + ``` + - language: "Java" + color: "red" + content: | + ```java {style=abap} + import com.groupdocs.viewer.Viewer; + import com.groupdocs.viewer.options.PdfViewOptions; + // ... + // Tải tệp DOCX để kết xuất + try (Viewer viewer = new Viewer("sample.docx")) { + // Kết xuất DOCX thành tệp PDF + PdfViewOptions viewOptions = new PdfViewOptions(); + viewer.view(viewOptions); + } + ``` + - language: "TypeScript" + color: "green" + content: | + ```javascript {style=abap} + // Tải tệp DOCX để kết xuất + const viewer = new groupdocs.viewer.Viewer("sample.docx") + + // Kết xuất DOCX thành tệp PDF + const viewOptions = groupdocs.viewer.PdfViewOptions(output.pdf) + viewer.view(viewOptions) + ``` + + - language: "Python" + color: "yellow" + content: | + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + // Tải tệp DOCX để kết xuất + with gv.Viewer("sample.docx") as viewer: + + // Kết xuất DOCX thành tệp PDF + viewOptions = gvo.PdfViewOptions("output.pdf") + viewer.view(viewOptions) + ``` + +############################# Formats ############################ +formats: + enable: true + title: "Hơn 180 định dạng tệp được hỗ trợ" + description: "GroupDocs.Viewer hỗ trợ các thao tác với phổ biến nhất [định dạng tệp](https://docs.groupdocs.com/viewer/net/supported-document-formats/)" + + +############################# Metrics ############################ + +metrics: + enable: true + title: "Số liệu chuyên sâu và hiểu biết thống kê" + description: "Đi sâu vào phân tích chi tiết về các số liệu quan trọng của chúng tôi, cung cấp số liệu toàn diện và thông tin thống kê chuyên sâu về thành tích, tác động và sự phát triển của chúng tôi." + + items: + # metrics loop + - number: "180+" + title: "Các định dạng được hỗ trợ" + content: "Dễ dàng xem hơn 180 định dạng tệp bao gồm tài liệu, hình ảnh và bản vẽ CAD một cách dễ dàng. Phá vỡ các rào cản tương thích và truy cập các tệp đa dạng một cách dễ dàng bằng giải pháp xem toàn diện của chúng tôi." + # metrics loop + - number: "1.0M" + title: "Tải xuống NuGet" + content: "Giải pháp gói NuGet của chúng tôi đã trở thành tài nguyên đáng tin cậy và được áp dụng rộng rãi trong cộng đồng nhà phát triển, cung cấp khả năng tích hợp liền mạch và chức năng có giá trị cho vô số dự án." + + # metrics loop + - number: "10+" + title: "Thư viện" + content: "Sản phẩm của chúng tôi bao gồm hơn 10 thư viện, cung cấp các tính năng nâng cao để tối ưu hóa hiệu suất. Những thư viện này được thiết kế để đáp ứng các nhu cầu phát triển khác nhau với khả năng tuyệt vời." + + # metrics loop + - number: "100+" + title: "Khách hàng hạnh phúc" + content: "Phục vụ các thương hiệu mang tính biểu tượng nhất trên toàn cầu. Khám phá lý do tại sao hàng trăm người yêu thích GroupDocs.Viewer! Khám phá khả năng điều hướng liền mạch, cộng tác thuận tiện và tính dễ sử dụng chưa từng có. Tham gia ngay!" + + +############################# Customers ############################ +# logo size X1 => 170:70 X2 => 340 : 140 + +customers: + enable: true + title: "Khách hàng hạnh phúc của chúng tôi" + description: "Thư viện GroupDocs được các thương hiệu nổi tiếng và nổi tiếng trên toàn thế giới sử dụng." + + items: + # customers loop + - title: "BenQ Corporation" + logo: "benq" + # customers loop + - title: "Nasdaq Stock Market" + logo: "nasdaq" + # customers loop + - title: "AT&T Inc." + logo: "att" + # customers loop + - title: "AstraZeneca" + logo: "astrazeneca" + # customers loop + - title: "Central Bank of Argentina" + logo: "argentinacentralbank" + # customers loop + - title: "Roche Holding AG" + logo: "roche" + # customers loop + - title: "Capita" + logo: "capita" + # customers loop + - title: "Axa S.A." + logo: "axa" + # customers loop + - title: "Instructure Inc." + logo: "instructure" + # customers loop + - title: "Wipro" + logo: "wipro" + + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + + items: + # loop + - title: ".NET" + link: "/viewer/net/" + color: "blue" + # loop + - title: "Java" + link: "/viewer/java/" + color: "red" + # loop + - title: "Node.js" + link: "/viewer/nodejs-java/" + color: "green" + # loop + - title: "Python" + link: "/viewer/python-net/" + color: "yellow" + +############################# Faq ############################ + +faq: + enable: true + title: "Các câu hỏi và mối quan tâm thường gặp" + description: "Tìm câu trả lời cho các câu hỏi thường gặp trong phần Câu hỏi thường gặp của chúng tôi để nhanh chóng giải quyết các thắc mắc và mối quan tâm của bạn." + + items: + # loop + - question: "Tôi có thể đánh giá các sản phẩm GroupDocs trước khi mua không?" + answer: | + Đúng! Tất cả các sản phẩm của GroupDocs đều có sẵn phiên bản đánh giá, không rủi ro. Chúng tôi đặc biệt khuyến khích các nhà phát triển tải xuống và dùng thử API của chúng tôi trước khi mua để đảm bảo rằng chúng sẽ đáp ứng 100% nhu cầu của bạn. + # loop + - question: "GroupDocs có trình diễn sản phẩm không?" + answer: | + Không, trọng tâm của chúng tôi là các API và tạo ra những sản phẩm ổn định và có chức năng nhất có thể. Chúng tôi cung cấp các bản dùng thử miễn phí và đầy đủ chức năng dưới dạng [giấy phép tạm thời](https://purchase.groupdocs.com/temporary-license/) để bạn có thể tự mình dùng thử sản phẩm. + # loop + - question: "Tôi có thể tải sản phẩm ở đâu?" + answer: | + Bạn có thể tải xuống tất cả sản phẩm từ [trang web](https://releases.groupdocs.com). Chúng tôi không gửi bản sao thực của phần mềm qua thư. + # loop + - question: "Giấy phép nhà phát triển GroupDocs dành cho mỗi người dùng hay mỗi người dùng được đặt tên?" + answer: | + Giấy phép Nhà phát triển GroupDocs dành cho mỗi người dùng, không phải cho mỗi người dùng được đặt tên. Chúng tôi hiểu rằng các thành viên của nhóm viết mã có thể thay đổi theo thời gian và việc phải cập nhật giấy phép mỗi lần điều đó xảy ra là không thực tế. + # loop + - question: "Chúng ta có cần cấp phép chỉ cho các nhà phát triển đang hoạt động không? Ví dụ: chúng tôi có một nhóm gồm hai nhà phát triển làm việc ở ca A và một nhóm thứ hai gồm hai nhà phát triển làm việc ở ca B… trong tình huống này, chúng tôi cần hai hay bốn giấy phép?" + answer: | + Tất cả các nhà phát triển đang làm việc trong dự án đều phải được cấp phép. Trong tình huống này, GroupDocs thấy nhóm của bạn có bốn thành viên (mặc dù họ làm việc vào những thời điểm khác nhau). + +############################# Cloud ############################ + +cloud_links: + enable: true + title: "API mã thấp GroupDocs.Viewer" + description: "Tăng tốc độ xem tài liệu hoặc hình ảnh trong bất kỳ loại ứng dụng nào với API REST dựa trên đám mây của chúng tôi" + + items: + # loop + - icon: "groupdocs_viewer-for-curl" + title: "GroupDocs.Viewer Cloud for cURL" + link: "https://products.groupdocs.cloud/viewer/curl" + content: "Sử dụng API trình xem tài liệu cURL RESTful để hiển thị và hiển thị hiệu quả Microsoft Office, PDF và nhiều định dạng tệp tiêu chuẩn khác trong ứng dụng của bạn." + + # loop + - icon: "groupdocs_viewer-for-net" + title: "GroupDocs.Viewer Cloud for .NET" + link: "https://products.groupdocs.cloud/viewer/net" + content: "Nâng cao khả năng xem tài liệu trong các ứng dụng .NET với Cloud SDK cho .NET. Xem tài liệu liền mạch ở định dạng HTML, PDF hoặc hình ảnh." + # loop + - icon: "groupdocs_viewer-for-java" + title: "GroupDocs.Viewer Cloud for Java" + link: "https://products.groupdocs.cloud/viewer/java" + content: "Tích hợp khả năng hiển thị tài liệu nâng cao vào các ứng dụng Java của bạn bằng cách sử dụng SDK Trình xem Tài liệu được xây dựng có mục đích dành cho Java." + +############################# Apps ############################ + +app_links: + enable: true + title: "Ứng dụng GroupDocs.Viewer NoCode" + description: "Ứng dụng trực tuyến cho phép bạn xem hơn 180 định dạng tệp phổ biến trong trình duyệt" + + items: + # loop + - icon: "groupdocs_viewer-app" + title: "GroupDocs.Viewer Total" + link: "https://products.groupdocs.app/viewer/total" + content: "Khám phá ứng dụng trực tuyến miễn phí để xem hơn 180 định dạng tệp trực tiếp từ trình duyệt web ưa thích của bạn." + + # loop + - icon: "groupdocs_words-app" + title: "GroupDocs.Viewer DOCX" + link: "https://products.groupdocs.app/viewer/docx" + content: "Công cụ dựa trên web để xem các tệp Microsoft Word một cách dễ dàng trên nhiều thiết bị khác nhau." + + # loop + - icon: "groupdocs_pdf-app" + title: "GroupDocs.Viewer PDF" + link: "https://products.groupdocs.app/viewer/pdf" + content: "Mở và xem tệp PDF trực tuyến bằng trình xem PDF miễn phí." + + +--- \ No newline at end of file diff --git a/content/viewer/_index.zh.md b/content/viewer/_index.zh.md new file mode 100644 index 00000000..2775d8d0 --- /dev/null +++ b/content/viewer/_index.zh.md @@ -0,0 +1,402 @@ +--- +############################# Static ########################## +layout: "family" +date: 2023-12-20T06:39:57 +draft: false + +product: "Viewer" +product_tag: "viewer" + +############################# Head ############################ +head_title: "渲染和查看文档 API |本地API和在线服务" +head_description: "轻松免费地渲染和查看 Word、PDF、Excel、Powerpoint 或图像文件" + +############################# Header ########################## +title: "轻松渲染和查看文档" +description: | + 强大的查看器 API 可将不同文件渲染为 PDF、HTML 和图像。 + + 从各种来源加载文档,包括文件、流、URL、FTP 服务器、Amazon S3、Azure Blob 存储等。 + + 生成响应式 HTML 页面、保护输出 PDF 文件并重新排序其页面、旋转页面、渲染注释和注释(如果需要)。 + +############################# Platforms ############################ +supported_platforms: + enable: true + head_title: "选择您的平台" + title: "支持的平台" + description: "GroupDocs.Viewer 库支持以下操作系统和框架" + details_link_title: "了解更多" + items: + # supported_platforms loop + - title: ".NET" + description: "GroupDocs.Viewer for .NET" + color: "blue" + tag: "net" + link: "/viewer/net/" + features_link: "https://docs.groupdocs.com/viewer/net/system-requirements/" + features: + # features loop + - content: ".NET Framework 4.6.2+
.NET Core 3.1
.NET 6+" + rows: "3" + # features loop + - content: "Windows, Linux" + rows: "1" + # features loop + - content: "180 多种文件格式" + rows: "1" + # features loop + - content: "ASP.NET Core 的 UI 包" + rows: "1" + # features loop + - content: "ASP.NET WebForms Demo
ASP.NET MVC Demo
ASP.NET Core Demo" + rows: "3" + + # supported_platforms loop + - title: "Java" + description: "GroupDocs.Viewer for Java" + color: "red" + tag: "java" + link: "/viewer/java/" + features_link: "https://docs.groupdocs.com/viewer/java/system-requirements/" + features: + # features loop + - content: "J2SE 8.0 (1.8)+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "180 多种文件格式" + rows: "1" + # features loop + - content: "Spring 和 Dropwizard 的 UI 包" + rows: "1" + # features loop + - content: "Spring Demo
Dropwizard demo" + rows: "3" + + # supported_platforms loop + - title: "Node.js" + description: "GroupDocs.Viewer for Node.js" + color: "green" + tag: "nodejs-java" + link: "/viewer/nodejs-java/" + features_link: "https://docs.groupdocs.com/viewer/nodejs-java/system-requirements/" + features: + # features loop + - content: "Node.js 16+
and J2SE 8.0 (1.8)+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "180 多种文件格式" + rows: "1" + # features loop + - content: "UI 包 - 即将推出" + rows: "1" + # features loop + - content: "演示 - 即将推出" + rows: "3" + + # supported_platforms loop + - title: "Python" + description: "GroupDocs.Viewer for Python" + color: "yellow" + tag: "python-net" + link: "/viewer/python-net/" + features_link: "https://docs.groupdocs.com/viewer/python-net/system-requirements/" + features: + # features loop + - content: "Python 3.9+
and .Net 6+" + rows: "3" + # features loop + - content: "Windows, Linux, macOS" + rows: "1" + # features loop + - content: "180 多种文件格式" + rows: "1" + # features loop + - content: "UI 包 - 即将推出" + rows: "1" + # features loop + - content: "演示 - 即将推出" + rows: "3" + +############################# Features ############################ + +features: + enable: true + title: "GroupDocs.Viewer 的功能集" + description: "API 可在应用程序中将不同类型的文件呈现为 HTML、PDF、PNG 和 JPEG,以便无需第三方软件即可查看它们。" + + items: + # feature loop + - icon: "view" + title: "查看文档和图像" + content: "通过将文档呈现为 HTML、PDF、PNG 和 JPEG 文件来查看文档。" + + # feature loop + - icon: "password" + title: "打开受保护的文档" + content: "指定打开加密文档的密码。" + + # feature loop + - icon: "load" + title: "从任何地方加载文件" + content: "从各种文件、URL、FTP 服务器、Amazon S3 等加载文档。" + + # feature loop + - icon: "pages" + title: "渲染所有或特定页面" + content: "指定要呈现的页码范围。" + + +############################# Code samples ############################ +code_samples: + enable: true + title: "GroupDocs.Viewer 代码示例" + description: "C#、Java、TypeScript 中典型 GroupDocs.Viewer 操作的一些用例" + items: + # code sample loop + - title: "如何将 DOCX 文件渲染为 PDF" + content: | + 将 DOCX 文档渲染为 PDF,无需安装 Microsoft Word 或其他软件。在 .NET 应用程序中轻松加载和查看 DOCX 文件,无论是 Web 应用程序还是桌面应用程序。以下是如何将 DOCX 文件呈现为 PDF 的示例: + samples: + - language: "C#" + color: "blue" + content: | + ```csharp {style=abap} + // 加载 DOCX 文件进行渲染 + using (Viewer viewer = new Viewer("sample.docx")) + { + // 将 DOCX 渲染为 PDF 文件 + PdfViewOptions viewOptions = new PdfViewOptions(); + viewer.View(viewOptions); + } + ``` + - language: "Java" + color: "red" + content: | + ```java {style=abap} + import com.groupdocs.viewer.Viewer; + import com.groupdocs.viewer.options.PdfViewOptions; + // ... + // 加载 DOCX 文件进行渲染 + try (Viewer viewer = new Viewer("sample.docx")) { + // 将 DOCX 渲染为 PDF 文件 + PdfViewOptions viewOptions = new PdfViewOptions(); + viewer.view(viewOptions); + } + ``` + - language: "TypeScript" + color: "green" + content: | + ```javascript {style=abap} + // 加载 DOCX 文件进行渲染 + const viewer = new groupdocs.viewer.Viewer("sample.docx") + + // 将 DOCX 渲染为 PDF 文件 + const viewOptions = groupdocs.viewer.PdfViewOptions(output.pdf) + viewer.view(viewOptions) + ``` + + - language: "Python" + color: "yellow" + content: | + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + // 加载 DOCX 文件进行渲染 + with gv.Viewer("sample.docx") as viewer: + + // 将 DOCX 渲染为 PDF 文件 + viewOptions = gvo.PdfViewOptions("output.pdf") + viewer.view(viewOptions) + ``` + +############################# Formats ############################ +formats: + enable: true + title: "支持 180 多种文件格式" + description: "GroupDocs.Viewer支持最流行的的操作[文件格式](https://docs.groupdocs.com/viewer/net/supported-document-formats/)" + + +############################# Metrics ############################ + +metrics: + enable: true + title: "深入的指标和统计见解" + description: "深入了解我们的关键数据的详细分类,提供有关我们的成就、影响和增长的全面指标和统计见解。" + + items: + # metrics loop + - number: "180+" + title: "支持的格式" + content: "轻松轻松查看 180 多种文件格式,包括文档、图像和 CAD 绘图。借助我们全面的查看解决方案,打破兼容性障碍并轻松访问各种文件。" + # metrics loop + - number: "1.0M" + title: "NuGet 下载" + content: "我们的 NuGet 包解决方案已成为开发人员社区中值得信赖且广泛采用的资源,为无数项目提供无缝集成和有价值的功能。" + + # metrics loop + - number: "10+" + title: "图书馆" + content: "我们的产品包括 10 多个库,提供先进的功能来优化性能。这些库旨在以无与伦比的功能满足不同的开发需求。" + + # metrics loop + - number: "100+" + title: "快乐的顾客" + content: "为全球最具标志性的品牌提供服务。了解为什么数百人喜欢 GroupDocs.Viewer!探索无缝导航、便捷协作和无与伦比的易用性。立即加入!" + + +############################# Customers ############################ +# logo size X1 => 170:70 X2 => 340 : 140 + +customers: + enable: true + title: "我们满意的客户" + description: "GroupDocs 库被世界各地的全球知名和杰出品牌所采用。" + + items: + # customers loop + - title: "BenQ Corporation" + logo: "benq" + # customers loop + - title: "Nasdaq Stock Market" + logo: "nasdaq" + # customers loop + - title: "AT&T Inc." + logo: "att" + # customers loop + - title: "AstraZeneca" + logo: "astrazeneca" + # customers loop + - title: "Central Bank of Argentina" + logo: "argentinacentralbank" + # customers loop + - title: "Roche Holding AG" + logo: "roche" + # customers loop + - title: "Capita" + logo: "capita" + # customers loop + - title: "Axa S.A." + logo: "axa" + # customers loop + - title: "Instructure Inc." + logo: "instructure" + # customers loop + - title: "Wipro" + logo: "wipro" + + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + + items: + # loop + - title: ".NET" + link: "/viewer/net/" + color: "blue" + # loop + - title: "Java" + link: "/viewer/java/" + color: "red" + # loop + - title: "Node.js" + link: "/viewer/nodejs-java/" + color: "green" + # loop + - title: "Python" + link: "/viewer/python-net/" + color: "yellow" + +############################# Faq ############################ + +faq: + enable: true + title: "常见问题和疑虑" + description: "在我们的常见问题解答部分查找常见问题的答案,以快速解决您的疑问和疑虑。" + + items: + # loop + - question: "我可以在购买前评估 GroupDocs 产品吗?" + answer: | + 是的!所有 GroupDocs 产品均提供无风险评估版本。我们强烈鼓励开发人员在购买前下载并试用我们的 API,以确保它们 100% 满足您的需求。 + # loop + - question: "GroupDocs 是否进行产品演示?" + answer: | + 不,我们的重点是 API 并打造功能最强大、最稳定的产品。我们确实以[临时许可证](https://purchase.groupdocs.com/temporary-license/)的形式提供功能齐全的免费试用版,以便您可以亲自测试该产品。 + # loop + - question: "我在哪里可以下载该产品?" + answer: | + 所有产品都可以从[网站](https://releases.groupdocs.com)下载。我们不会通过邮件发送我们软件的物理副本。 + # loop + - question: "GroupDocs 开发人员许可证是按用户还是按指定用户授予的?" + answer: | + GroupDocs 开发人员许可证是按用户授予的,而不是按指定用户授予的。我们了解编码团队的成员可能会随着时间的推移而发生变化,并且每次发生时都必须更新许可是不切实际的。 + # loop + - question: "我们是否只需要为活跃的开发人员授予许可?例如,我们有一个由两名开发人员组成的团队从事 A 班次工作,而另一个由两名开发人员组成的团队从事 B 班次工作……在这种情况下,我们需要两个还是四个许可证?" + answer: | + 所有从事该项目的开发人员都需要获得许可。在这种情况下,GroupDocs 会将您的团队视为有四名成员(即使他们在不同的时间工作)。 + +############################# Cloud ############################ + +cloud_links: + enable: true + title: "GroupDocs.Viewer 低代码 API" + description: "使用我们基于云的 REST API 加速任何类型应用程序中的文档或图像查看" + + items: + # loop + - icon: "groupdocs_viewer-for-curl" + title: "GroupDocs.Viewer Cloud for cURL" + link: "https://products.groupdocs.cloud/viewer/curl" + content: "使用 cURL RESTful 文档查看器 API 在您的应用程序中高效地呈现和展示 Microsoft Office、PDF 和各种其他标准文件格式。" + + # loop + - icon: "groupdocs_viewer-for-net" + title: "GroupDocs.Viewer Cloud for .NET" + link: "https://products.groupdocs.cloud/viewer/net" + content: "使用 Cloud SDK for .NET 增强 .NET 应用程序中的文档查看功能。无缝查看 HTML、PDF 或图像格式的文档。" + # loop + - icon: "groupdocs_viewer-for-java" + title: "GroupDocs.Viewer Cloud for Java" + link: "https://products.groupdocs.cloud/viewer/java" + content: "使用专门构建的 Java 文档查看器 SDK 将高级文档呈现功能集成到您的 Java 应用程序中。" + +############################# Apps ############################ + +app_links: + enable: true + title: "GroupDocs.Viewer NoCode 应用程序" + description: "在线应用程序允许您在浏览器中查看 180 多种流行的文件格式" + + items: + # loop + - icon: "groupdocs_viewer-app" + title: "GroupDocs.Viewer Total" + link: "https://products.groupdocs.app/viewer/total" + content: "探索免费的在线应用程序,直接从您喜欢的网络浏览器查看 180 多种文件格式。" + + # loop + - icon: "groupdocs_words-app" + title: "GroupDocs.Viewer DOCX" + link: "https://products.groupdocs.app/viewer/docx" + content: "基于 Web 的工具,用于在各种设备上轻松查看 Microsoft Word 文件。" + + # loop + - icon: "groupdocs_pdf-app" + title: "GroupDocs.Viewer PDF" + link: "https://products.groupdocs.app/viewer/pdf" + content: "使用免费的 PDF 查看器在线打开和查看 PDF 文件。" + + +--- \ No newline at end of file diff --git a/content/viewer/net/_index.de.md b/content/viewer/net/_index.de.md new file mode 100644 index 00000000..45178359 --- /dev/null +++ b/content/viewer/net/_index.de.md @@ -0,0 +1,305 @@ +--- +############################# Static ########################## +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + +############################# Head ############################ +head_title: ".NET-Dokument-Viewer-API, rendert PDF-Word-Excel-Bild-HTML-Diagramme" +head_description: "C# ASP.NET-Dateibetrachter und Rendering-API. Fügen Sie PDF-Viewer, Word-Viewer, Excel-Viewer, Bild-Viewer, HTML-Viewer und E-Mail-Viewer-Funktionen in .NET-Apps hinzu." + +############################# Header ########################## +title: "Rendern und Anzeigen von Dokumenten
mit der .NET-API" +description: "Leistungsstarke Viewer-API zum Rendern von über 180 Dokumentformaten in PDF, HTML und Bild mit vielseitigen Konfigurationsoptionen." +words: + for: "for" + +actions: + main: "Kostenloser NuGet-Download" + main_link: "https://www.nuget.org/packages/GroupDocs.Viewer" + alt: "Lizenzierung" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/net" + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + +release: + title: "Version {0} veröffentlicht" + notes: "Schau was neu ist" + downloads: "Downloads" + link: "https://releases.groupdocs.com/viewer/net/release-notes/latest/" + +code: + title: "PDF-Dateien in C# rendern" + more: "Mehr Beispiele" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + install: "dotnet add package GroupDocs.Viewer" + content: | + ```csharp {style=abap} + // Laden Sie die Quell-PDF-Datei + using (var viewer = new Viewer("resume.pdf")) + { + // Legen Sie Ausgabe-HTML-Optionen fest + var viewOptions = + HtmlViewOptions.ForEmbeddedResources("page{0}.html"); + + // Rendern Sie PDF in HTML + viewer.View(viewOptions); + } + ``` + +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer auf einen Blick" + description: "API zum Rendern, Anzeigen und Konvertieren von Dokumenten, Folien, Diagrammen und vielen anderen Dokumenttypen in .NET-Anwendungen" + features: + # feature loop + - title: "Dokumente effizient und zuverlässig einsehen" + content: "Mit der GroupDocs.Viewer-API können Sie Dokumente aller unterstützten Formate mit flexiblen und leistungsstarken Optionen effizient in HTML, JPEG, PNG und PDF rendern und dabei die Integrität von Inhalt und Dokumentstruktur bewahren. GroupDocs.Viewer unterstützt .NET Framework 4.6.2 und .NET 6.0 und funktioniert auf Windows- und Linux-Plattformen." + + # feature loop + - title: "Die gängigsten Datei- und Dokumentformate werden unterstützt" + content: "Wir unterstützen das Rendern der 180 gängigsten Datei- und Dokumentformate, darunter Word, Excel, PDF, PowerPoint, die OpenDocument-Formatfamilie, Archive, Raster- und Vektorbilder, E-Books, Programmiersprachen und Markups sowie viele andere Dateitypen, einschließlich verschlüsselter Dateien Dateien mit Passwortschutz." + + # feature loop + - title: "Anpassbare Ausgabe" + content: "GroupDocs.Viewer ermöglicht nicht nur das Rendern des Dokuments, sondern auch die Steuerung, wie genau, welche Teile des Dokuments gerendert werden sollen oder jetzt, wie sie gerendert werden sollen, und verschiedene Transformationen auf die gerenderte Ausgabe anzuwenden." + + # feature loop + - title: "Benutzeroberfläche für ASP.NET Core" + content: "Wir stellen ein Open-Source-UI-Paket für ASP.NET Core bereit, das in wenigen Minuten zu Ihrem Projekt hinzugefügt werden kann. Das Viewer.UI-Paket enthält eine Angular-basierte Web-UI und stellt eine Reihe nützlicher APIs und Datenspeicheranbieter bereit." + +############################# Platforms ############################ +platforms: + enable: true + title: "Plattformunterstützung" + description: "GroupDocs.Viewer für .NET unterstützt die folgenden Betriebssysteme, Frameworks und Paketmanager" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "VS Code" + image: "vs_code" + # platform loop + - title: "ReSharper" + image: "resharper" + # platform loop + - title: "macOS" + image: "finder" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "NuGet" + image: "nuget" + packages: + # packages loop + - title: "Windows-spezifisches Paket" + content: | + * Unterstützt .NET Framework 4.6.2+ und .NET 6.0 + * Die umfassendste Unterstützung für Dateiformate + * Hängt von System.Drawing und System.Drawing.Common ab + action: "NuGet-Download" + action_link: "https://www.nuget.org/packages/GroupDocs.Viewer" + # packages loop + - title: "Plattformübergreifendes Paket" + content: | + * Unterstützt .NET 6.0 und höhere Versionen + * Begrenzte Unterstützung für Dateiformate + * Funktioniert unter Windows, Linux und macOS + action: "NuGet-Download" + action_link: "https://www.nuget.org/packages/GroupDocs.Viewer.CrossPlatform" + +############################# File formats ############################ +formats: + enable: true + title: "Unterstützte Dateiformate" + description: | + GroupDocs.Viewer für .NET unterstützt Vorgänge mit den folgenden [Dateiformaten](https://docs.groupdocs.com/viewer/net/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument und Textformate + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX {{< landing/tooltip icon="windows" title="Unterstützt durch Windows-spezifisches Paket" >}} + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE {{< landing/tooltip icon="windows" title="Unterstützt durch Windows-spezifisches Paket" >}} + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### Bilder, Grafiken und Diagramme + * **Rasterbilder:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB {{< landing/tooltip icon="windows" title="Unterstützt durch Windows-spezifisches Paket" >}} + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### Andere + * **Netz:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM {{< landing/tooltip icon="windows" title="Unterstützt durch Windows-spezifisches Paket" >}} + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **Archiv:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **Andere:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "GroupDocs.Viewer-Funktionen" + description: "PDF- und Office-Dokumente nahtlos rendern, anzeigen und konvertieren" + + items: + # feature loop + - icon: "viewhtml" + title: "Dokumente in HTML anzeigen" + content: "Konvertieren Sie Dokumente jeglicher Art mit CSS und SVG in ein HTML-Dokument, das in jedem modernen Webbrowser angezeigt werden kann." + + # feature loop + - icon: "rasterize" + title: "Dokumente rastern" + content: "Rastern Sie jedes unterstützte Dokumentformat in ein Rasterbild, mit anpassbarem Bildformat und Komprimierungsqualität." + + # feature loop + - icon: "sourcecode" + title: "Programmiercodes rendern und hervorheben" + content: "Unterstützung aller gängigen Programmier-, Skript- und Auszeichnungssprachen mit der Möglichkeit, deren Syntax zu analysieren und hervorzuheben." + + # feature loop + - icon: "convertpdf" + title: "In PDF konvertieren" + content: "Dokumente in jedem unterstützten Format können mit anpassbaren Optionen einfach konvertiert und im PDF-Format gespeichert werden." + + # feature loop + - icon: "transform" + title: "Wenden Sie Transformationen an" + content: "Das Ausgabedokument kann während des Renderns transformiert werden – Seiten können gedreht und/oder neu angeordnet werden und Textwasserzeichen können darüber platziert werden." + + # feature loop + - icon: "adjustment" + title: "Anpassung der HTML-Ausgabe" + content: "Ausgabe-HTML-Dokumente, die vom GroupDocs.Viewer generiert werden, können sehr fein abgestimmt werden: Sie können im Stream oder in der Datei gespeichert werden, mit externen oder eingebetteten Ressourcen, Rückrufen usw." + + # feature loop + - icon: "complex" + title: "Unterstützung komplexer Dokumentenstrukturen" + content: "GroupDocs.Viewer unterstützt nicht nur einzelne Dokumente, sondern auch Dateien, die intern eine Liste oder hierarchische Struktur von Dokumenten enthalten, wie E-Mail-Nachrichten mit Anhängen, ZIP-Archive mit internen Dateien in Ordnern, mehrseitige TIFF-Bilder usw." + + # feature loop + - icon: "optimization" + title: "Optimierungsmöglichkeiten" + content: "GroupDocs.Viewer enthält ein anpassbares Cache-Subsystem, das die Ladezeit durch die Verwendung der zwischengespeicherten Versionen der Dokumente verkürzen kann. Außerdem ermöglicht eine Reihe verschiedener Optionen für verschiedene Formate, einige unnötige Teile oder Aspekte von Dokumenten aus der Darstellung auszuschließen (Schriftarten, ausgeblendete Arbeitsblätter, E-Mail-Anhänge), um die Gesamtleistung zu optimieren" + + # feature loop + - icon: "passwordprotected" + title: "Unterstützung passwortgeschützter Dokumente" + content: "GroupDocs.Viewer ermöglicht das Öffnen verschlüsselter Dokumente verschiedener Typen: PDF, WordProcessing, Tabellenkalkulation, Präsentation und andere, indem in den Ladeoptionen ein Passwort angegeben wird." + +############################# Code samples ############################ +code_samples: + enable: true + title: "Codebeispiele" + description: "Einige Anwendungsfälle typischer GroupDocs.Viewer für .NET-Vorgänge" + items: + # code sample loop + - title: "Rendern Sie DOCX in HTML" + content: | + Mit den Klasseneigenschaften [HtmlViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/htmlviewoptions/) können Sie den Konvertierungsprozess steuern, mehr dazu [hier](https://docs.groupdocs.com/viewer/net/rendering-to-html/). Sie können beispielsweise alle externen Ressourcen in die Ausgabe-HTML-Datei einbetten, die Ausgabedatei verkleinern und für den Druck optimieren. + {{< landing/code title="C#">}} + ```csharp {style=abap} + using GroupDocs.Viewer; + using GroupDocs.Viewer.Options; + + // Betrachter instanziieren + using (Viewer viewer = new Viewer("resume.docx")) + { + // Legen Sie Ausgabe-HTML-Optionen fest + HtmlViewOptions options = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie DOCX mit eingebetteten Ressourcen in HTML + viewer.View(options); + } + ``` + {{< /landing/code >}} + # code sample loop + - title: "Exportieren Sie PPTX in PDF" + content: | + Erstellen Sie eine Klasseninstanz [PdfViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/pdfviewoptions/) und übergeben Sie sie an [Viewer.View](https://reference.groupdocs.com/viewer/net/groupdocs.viewer/viewer/view/#view)-Methode zum Konvertieren einer PowerPoint PPTX-Datei in PDF. Mit den Eigenschaften der Klasse PdfViewOptions können Sie den Konvertierungsprozess steuern. Sie können beispielsweise die ausgegebene PDF-Datei schützen, ihre Seiten neu anordnen und die Qualität der Dokumentbilder festlegen. Einzelheiten finden Sie im [folgenden Dokumentationsabschnitt](https://docs.groupdocs.com/viewer/net/rendering-to-pdf/). + {{< landing/code title="C#">}} + ```csharp {style=abap} + using GroupDocs.Viewer; + using GroupDocs.Viewer.Options; + + using (var viewer = new Viewer("presentation.pptx")) + { + // Legen Sie die PDF-Ausgabeoptionen fest + var viewOptions = new PdfViewOptions("presentation.pdf"); + + // Exportieren Sie PPTX in PDF + viewer.View(viewOptions); + } + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "GroupDocs-Produktbewertungen" +# description: "Verlassen Sie sich nicht nur auf unser Wort. Sehen Sie, was andere Entwickler über unsere APIs sagen" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Exzellenter Service und hervorragende Produkte. Sie waren während des GroupDocs.Viewer für .NET-Implementierungsprozesses äußerst hilfsbereit und reaktionsschnell und können sie nur wärmstens empfehlen." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Nach der Implementierung und Verwendung von GroupDocs.Viewer für .NET im Projekt scheint es sehr gut zu funktionieren. Ich habe es mit vielen Dokumenten getestet und bisher so gut. Alles, was ich darauf geworfen habe, wird gut gerendert und sieht genauso gut aus wie in einem PDF-Viewer oder MS Word." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- \ No newline at end of file diff --git a/content/viewer/net/_index.en.md b/content/viewer/net/_index.en.md new file mode 100644 index 00000000..67f3ea03 --- /dev/null +++ b/content/viewer/net/_index.en.md @@ -0,0 +1,305 @@ +--- +############################# Static ########################## +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + +############################# Head ############################ +head_title: ".NET document viewer API, render PDF Word Excel Image HTML Diagram" +head_description: "C# ASP.NET file viewer & rendering API. Add PDF viewer, Word viewer, Excel viewer, Image viewer, HTML viewer, Email viewer features in .NET apps." + +############################# Header ########################## +title: "Render & display documents
using .NET API" +description: "Powerful Viewer API to render 180+ document formats into PDF, HTML, and Image with versatile configuration options." +words: + for: "for" + +actions: + main: "Free NuGet Download" + main_link: "https://www.nuget.org/packages/GroupDocs.Viewer" + alt: "Licensing" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/net" + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + +release: + title: "Version {0} released" + notes: "See what’s new" + downloads: "Downloads" + link: "https://releases.groupdocs.com/viewer/net/release-notes/latest/" + +code: + title: "Render PDF files in C#" + more: "More examples" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + install: "dotnet add package GroupDocs.Viewer" + content: | + ```csharp {style=abap} + // Load the source PDF file + using (var viewer = new Viewer("resume.pdf")) + { + // Set output HTML options, one file per page + var viewOptions = + HtmlViewOptions.ForEmbeddedResources("page{0}.html"); + + // Render PDF to HTML with embedded resources + viewer.View(viewOptions); + } + ``` + +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer at a glance" + description: "API to render, display, convert documents, slides, diagrams, and many other document types in .NET applications" + features: + # feature loop + - title: "View documents efficiently & reliably" + content: "With GroupDocs.Viewer API you can efficiently render documents of any supportable formats to HTML, JPEG, PNG, and PDF with flexible and powerful options while maintaining content and document structure integrity. GroupDocs.Viewer supports .NET Framework 4.6.2 and .NET 6.0, it works on Windows and Linux platforms." + + # feature loop + - title: "Most popular file and document formats are supported" + content: "We support rendering over the 180 most popular file and document formats that include Word, Excel, PDF, PowerPoint, OpenDocument formats family, Archives, Raster and Vector images, e-Books, programming languages and markups, and many other file types, including encrypted files with password protection." + + # feature loop + - title: "Customizable output" + content: "GroupDocs.Viewer allows not only to render the document, but also to control how exactly, which parts of the document should be rendered or now, how they should be rendered, and to apply different transformations to the rendered output." + + # feature loop + - title: "UI for ASP.NET Core" + content: "We provide an open source UI package for ASP.NET Core that can be added to your project in a couple of minutes. The Viewer.UI package contains an Angular-based web-UI and delivers a set of useful APIs and data storage providers." + +############################# Platforms ############################ +platforms: + enable: true + title: "Platforms support" + description: "GroupDocs.Viewer for .NET supports the following operating systems, frameworks and package managers" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "VS Code" + image: "vs_code" + # platform loop + - title: "ReSharper" + image: "resharper" + # platform loop + - title: "macOS" + image: "finder" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "NuGet" + image: "nuget" + packages: + # packages loop + - title: "Windows-specific package" + content: | + * Supports .NET Framework 4.6.2+ and .NET 6.0 + * The most comprehensive file formats support + * Depends on System.Drawing and System.Drawing.Common + action: "NuGet download" + action_link: "https://www.nuget.org/packages/GroupDocs.Viewer" + # packages loop + - title: "Cross-platform package" + content: | + * Supports .NET 6.0 and higher versions + * Limited file formats support + * Works on Windows, Linux and macOS + action: "NuGet download" + action_link: "https://www.nuget.org/packages/GroupDocs.Viewer.CrossPlatform" + +############################# File formats ############################ +formats: + enable: true + title: "Supported file formats" + description: | + GroupDocs.Viewer for .NET supports operations with the following [file formats](https://docs.groupdocs.com/viewer/net/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument and text formats + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX {{< landing/tooltip icon="windows" title="Supported by Windows-specific package" >}} + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE {{< landing/tooltip icon="windows" title="Supported by Windows-specific package" >}} + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### Images, Graphics & Diagrams + * **Raster images:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB {{< landing/tooltip icon="windows" title="Supported by Windows-specific package" >}} + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### Other + * **Web:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM {{< landing/tooltip icon="windows" title="Supported by Windows-specific package" >}} + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **Archives:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **Other:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "GroupDocs.Viewer features" + description: "Seamlessly render, display, and convert PDF and Office Documents" + + items: + # feature loop + - icon: "viewhtml" + title: "View documents in HTML" + content: "Convert document of any type into a HTML document with CSS and SVG, which can be displayed in any modern web-browser." + + # feature loop + - icon: "rasterize" + title: "Rasterize documents" + content: "Rasterize any supportable document format to the raster image, with adjustable image format and compression quality." + + # feature loop + - icon: "sourcecode" + title: "Render and highlight programming codes" + content: "Support of all popular programming, scripting, and markup languages, with ability to parse and highlight their syntax." + + # feature loop + - icon: "convertpdf" + title: "Convert to PDF" + content: "Document of any supportable format can be easily converted and saved to the PDF with adjustable options." + + # feature loop + - icon: "transform" + title: "Apply transformations" + content: "Output document can be transformed during rendering - pages can be rotated and/or rearranged, and text watermark may be placed atop of them." + + # feature loop + - icon: "adjustment" + title: "HTML output adjustment" + content: "Output HTML documents, generated by the GroupDocs.Viewer, can be tuned very finely: it is allowed to save to the stream or file, with external or embedded resources, callbacks and so on." + + # feature loop + - icon: "complex" + title: "Support of complex document structures" + content: "GroupDocs.Viewer supports not only the single documents, but also files, which internally contain a list or hierarchical structure of documents, like email messages with attachments, ZIP archives with internal files within folders, multi-page TIFF images, and so on." + + # feature loop + - icon: "optimization" + title: "Optimization options" + content: "GroupDocs.Viewer contains an adjustable cache subsystem, which can fasten the loading time by using the cached versions of the documents. Also a set of different options for different formats allows to exclude some unnecessary parts or aspects of documents from the rendering (fonts, hidded worksheets, email attachments) to optimize the overall performance" + + # feature loop + - icon: "passwordprotected" + title: "Support of password-protected documents" + content: "GroupDocs.Viewer allows to open the encrypted documents of different types: PDF, WordProcessing, Spreadsheet, Presentation, and other, by specifying a password in the loading options." + +############################# Code samples ############################ +code_samples: + enable: true + title: "Code samples" + description: "Some use cases of typical GroupDocs.Viewer for .NET operations" + items: + # code sample loop + - title: "Render DOCX to HTML" + content: | + The [HtmlViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/htmlviewoptions/) class properties allow you to control the conversion process, more on that [here](https://docs.groupdocs.com/viewer/net/rendering-to-html/). For instance, you can embed all external resources in the output HTML file, minify the output file, and optimize it for printing. + {{< landing/code title="C#">}} + ```csharp {style=abap} + using GroupDocs.Viewer; + using GroupDocs.Viewer.Options; + + // Instantiate viewer + using (Viewer viewer = new Viewer("resume.docx")) + { + // Set output HTML options + HtmlViewOptions options = HtmlViewOptions.ForEmbeddedResources(); + + // Render DOCX to HTML with embedded resources + viewer.View(options); + } + ``` + {{< /landing/code >}} + # code sample loop + - title: "Export PPTX to PDF" + content: | + Create a [PdfViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/pdfviewoptions/) class instance and pass it to the [Viewer.View](https://reference.groupdocs.com/viewer/net/groupdocs.viewer/viewer/view/#view) method to convert a PowerPoint PPTX file to PDF. The PdfViewOptions class properties allow you to control the conversion process. For instance, you can protect the output PDF file, reorder its pages, and specify the quality of document images. Refer to the [following documentation section](https://docs.groupdocs.com/viewer/net/rendering-to-pdf/) for details. + {{< landing/code title="C#">}} + ```csharp {style=abap} + using GroupDocs.Viewer; + using GroupDocs.Viewer.Options; + + using (var viewer = new Viewer("presentation.pptx")) + { + // Set output PDF options + var viewOptions = new PdfViewOptions("presentation.pdf"); + + // Export PPTX to PDF + viewer.View(viewOptions); + } + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "GroupDocs products reviews" +# description: "Don't just take our word for it. See what other developers say about our APIs" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Excellent service and excellent products. They were extremely helpful and responsive during the GroupDocs.Viewer for .NET implementation process, can’t recommend them highly enough." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "After implementing and using GroupDocs.Viewer for .NET in the project it looks to be working very well. I have tested with a lot of documents and so far so good. Everything I’ve thrown at it renders nicely and looks just as good as it would in a PDF viewer or MS Word." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- \ No newline at end of file diff --git a/content/viewer/net/_index.es.md b/content/viewer/net/_index.es.md new file mode 100644 index 00000000..0d2ff070 --- /dev/null +++ b/content/viewer/net/_index.es.md @@ -0,0 +1,305 @@ +--- +############################# Static ########################## +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + +############################# Head ############################ +head_title: "API de visor de documentos .NET, renderizado PDF Word Excel Imagen HTML Diagrama" +head_description: "Visor de archivos C# ASP.NET y API de renderizado. Agregue funciones de visor de PDF, visor de Word, visor de Excel, visor de imágenes, visor HTML y visor de correo electrónico en aplicaciones .NET." + +############################# Header ########################## +title: "Representar y mostrar documentos
usando .NET API" +description: "Potente API Viewer para representar más de 180 formatos de documentos en PDF, HTML e imágenes con opciones de configuración versátiles." +words: + for: "for" + +actions: + main: "Descarga gratuita de NuGet" + main_link: "https://www.nuget.org/packages/GroupDocs.Viewer" + alt: "Licencia" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/net" + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + +release: + title: "Versión {0} lanzada" + notes: "Ver qué hay de nuevo" + downloads: "Descargas" + link: "https://releases.groupdocs.com/viewer/net/release-notes/latest/" + +code: + title: "Renderizar archivos PDF en C#" + more: "Más ejemplos" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + install: "dotnet add package GroupDocs.Viewer" + content: | + ```csharp {style=abap} + // Cargue el archivo PDF de origen + using (var viewer = new Viewer("resume.pdf")) + { + // Establecer opciones HTML de salida + var viewOptions = + HtmlViewOptions.ForEmbeddedResources("page{0}.html"); + + // Renderice PDF a HTML con recursos integrados + viewer.View(viewOptions); + } + ``` + +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer de un vistazo" + description: "API para renderizar, mostrar, convertir documentos, diapositivas, diagramas y muchos otros tipos de documentos en aplicaciones .NET" + features: + # feature loop + - title: "Vea documentos de manera eficiente y confiable" + content: "Con GroupDocs.Viewer API puede representar de manera eficiente documentos de cualquier formato compatible en HTML, JPEG, PNG y PDF con opciones flexibles y potentes mientras mantiene la integridad del contenido y la estructura del documento. GroupDocs.Viewer es compatible con .NET Framework 4.6.2 y .NET 6.0, funciona en plataformas Windows y Linux." + + # feature loop + - title: "Se admiten los formatos de archivos y documentos más populares" + content: "Admitimos la renderización de los 180 formatos de archivos y documentos más populares, que incluyen Word, Excel, PDF, PowerPoint, familia de formatos OpenDocument, archivos, imágenes rasterizadas y vectoriales, libros electrónicos, lenguajes de programación y marcas, y muchos otros tipos de archivos, incluidos los cifrados. archivos con protección por contraseña." + + # feature loop + - title: "Salida personalizable" + content: "GroupDocs.Viewer permite no sólo renderizar el documento, sino también controlar cómo exactamente, qué partes del documento deben renderizarse o ahora, cómo deben renderizarse y aplicar diferentes transformaciones a la salida renderizada." + + # feature loop + - title: "Interfaz de usuario para ASP.NET Core" + content: "Proporcionamos un paquete de interfaz de usuario de código abierto para ASP.NET Core que se puede agregar a su proyecto en un par de minutos. El paquete Viewer.UI contiene una interfaz de usuario web basada en Angular y ofrece un conjunto de API útiles y proveedores de almacenamiento de datos." + +############################# Platforms ############################ +platforms: + enable: true + title: "Soporte de plataformas" + description: "GroupDocs.Viewer para .NET admite los siguientes sistemas operativos, marcos y administradores de paquetes" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "VS Code" + image: "vs_code" + # platform loop + - title: "ReSharper" + image: "resharper" + # platform loop + - title: "macOS" + image: "finder" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "NuGet" + image: "nuget" + packages: + # packages loop + - title: "Paquete específico de Windows" + content: | + * Compatible con .NET Framework 4.6.2+ y .NET 6.0 + * El soporte de formatos de archivo más completo + * Depende de System.Drawing y System.Drawing.Common + action: "Descarga NuGet" + action_link: "https://www.nuget.org/packages/GroupDocs.Viewer" + # packages loop + - title: "Paquete multiplataforma" + content: | + * Soporta .NET 6.0 y versiones superiores + * Compatibilidad con formatos de archivo limitados + * Funciona en Windows, Linux y macOS + action: "Descarga NuGet" + action_link: "https://www.nuget.org/packages/GroupDocs.Viewer.CrossPlatform" + +############################# File formats ############################ +formats: + enable: true + title: "Formatos de archivo admitidos" + description: | + GroupDocs.Viewer para .NET admite operaciones con los siguientes [formatos de archivo](https://docs.groupdocs.com/viewer/net/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument y formatos de texto + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX {{< landing/tooltip icon="windows" title="Compatible con el paquete específico de Windows" >}} + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE {{< landing/tooltip icon="windows" title="Compatible con el paquete específico de Windows" >}} + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### Imágenes, gráficos y diagramas + * **Imágenes rasterizadas:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB {{< landing/tooltip icon="windows" title="Compatible con el paquete específico de Windows" >}} + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### Otro + * **Web:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM {{< landing/tooltip icon="windows" title="Compatible con el paquete específico de Windows" >}} + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **Archivo:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **Otro:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "Funciones de GroupDocs.Viewer" + description: "Represente, visualice y convierta sin problemas documentos PDF y Office" + + items: + # feature loop + - icon: "viewhtml" + title: "Ver documentos en HTML" + content: "Convierta documentos de cualquier tipo en un documento HTML con CSS y SVG, que se puede mostrar en cualquier navegador web moderno." + + # feature loop + - icon: "rasterize" + title: "Rasterizar documentos" + content: "Rasterice cualquier formato de documento compatible a la imagen rasterizada, con formato de imagen ajustable y calidad de compresión." + + # feature loop + - icon: "sourcecode" + title: "Renderizar y resaltar códigos de programación" + content: "Soporte de todos los lenguajes de programación, scripting y marcado populares, con capacidad de analizar y resaltar su sintaxis." + + # feature loop + - icon: "convertpdf" + title: "Convertir a PDF" + content: "Los documentos de cualquier formato compatible se pueden convertir y guardar fácilmente en PDF con opciones ajustables." + + # feature loop + - icon: "transform" + title: "Aplicar transformaciones" + content: "El documento de salida se puede transformar durante la renderización: las páginas se pueden rotar y/o reorganizar, y se puede colocar una marca de agua de texto encima de ellas." + + # feature loop + - icon: "adjustment" + title: "Ajuste de salida HTML" + content: "Los documentos HTML de salida, generados por GroupDocs.Viewer, se pueden ajustar con mucha precisión: se permite guardarlos en una secuencia o archivo, con recursos externos o integrados, devoluciones de llamada, etc." + + # feature loop + - icon: "complex" + title: "Soporte de estructuras de documentos complejas." + content: "GroupDocs.Viewer admite no solo documentos individuales, sino también archivos que contienen internamente una lista o estructura jerárquica de documentos, como mensajes de correo electrónico con archivos adjuntos, archivos ZIP con archivos internos dentro de carpetas, imágenes TIFF de varias páginas, etc." + + # feature loop + - icon: "optimization" + title: "Opciones de optimización" + content: "GroupDocs.Viewer contiene un subsistema de caché ajustable, que puede acelerar el tiempo de carga utilizando las versiones almacenadas en caché de los documentos. Además, un conjunto de diferentes opciones para diferentes formatos permite excluir algunas partes o aspectos innecesarios de los documentos del renderizado (fuentes, hojas de trabajo ocultas, archivos adjuntos de correo electrónico) para optimizar el rendimiento general." + + # feature loop + - icon: "passwordprotected" + title: "Soporte de documentos protegidos con contraseña." + content: "GroupDocs.Viewer permite abrir documentos cifrados de diferentes tipos: PDF, WordProcessing, Hoja de cálculo, Presentación y otros, especificando una contraseña en las opciones de carga." + +############################# Code samples ############################ +code_samples: + enable: true + title: "Ejemplos de código" + description: "Algunos casos de uso de GroupDocs.Viewer típico para operaciones .NET" + items: + # code sample loop + - title: "Renderizar DOCX a HTML" + content: | + Las propiedades de clase [HtmlViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/htmlviewoptions/) le permiten controlar el proceso de conversión, más sobre eso [aquí](https://docs.groupdocs.com/viewer/net/rendering-to-html/). Por ejemplo, puede incrustar todos los recursos externos en el archivo HTML de salida, minimizar el archivo de salida y optimizarlo para imprimir. + {{< landing/code title="C#">}} + ```csharp {style=abap} + using GroupDocs.Viewer; + using GroupDocs.Viewer.Options; + + // Visor de instancias + using (Viewer viewer = new Viewer("resume.docx")) + { + // Establecer opciones HTML de salida + HtmlViewOptions options = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice DOCX a HTML con recursos integrados + viewer.View(options); + } + ``` + {{< /landing/code >}} + # code sample loop + - title: "Exportar PPTX a PDF" + content: | + Cree una instancia de clase [PdfViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/pdfviewoptions/) y pásela a [Viewer.View](https://reference.groupdocs.com/viewer/net/groupdocs.viewer/viewer/view/#view) método para convertir un archivo PPTX de PowerPoint a PDF. Las propiedades de la clase PdfViewOptions le permiten controlar el proceso de conversión. Por ejemplo, puede proteger el archivo PDF de salida, reordenar sus páginas y especificar la calidad de las imágenes del documento. Consulte la [siguiente sección de documentación](https://docs.groupdocs.com/viewer/net/rendering-to-pdf/) para obtener más detalles. + {{< landing/code title="C#">}} + ```csharp {style=abap} + using GroupDocs.Viewer; + using GroupDocs.Viewer.Options; + + using (var viewer = new Viewer("presentation.pptx")) + { + // Establecer opciones de salida de PDF + var viewOptions = new PdfViewOptions("presentation.pdf"); + + // Exportar PPTX a PDF + viewer.View(viewOptions); + } + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "Reseñas de productos GroupDocs" +# description: "No confíe sólo en nuestra palabra. Vea lo que otros desarrolladores dicen sobre nuestras API" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Excelente servicio y excelentes productos. Fueron extremadamente útiles y receptivos durante el proceso de implementación de GroupDocs.Viewer para .NET, no puedo recomendarlos lo suficiente." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Después de implementar y usar GroupDocs.Viewer para .NET en el proyecto, parece estar funcionando muy bien. He probado con muchos documentos y hasta ahora todo bien. Todo lo que le he añadido se reproduce muy bien y se ve tan bien como en un visor de PDF o MS Word." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- \ No newline at end of file diff --git a/content/viewer/net/_index.fa.md b/content/viewer/net/_index.fa.md new file mode 100644 index 00000000..cddc5d99 --- /dev/null +++ b/content/viewer/net/_index.fa.md @@ -0,0 +1,305 @@ +--- +############################# Static ########################## +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + +############################# Head ############################ +head_title: "API نمایشگر اسناد دات نت، رندر PDF Word Excel Image HTML Diagram" +head_description: "C# ASP.NET بیننده و API رندر فایل. نمایشگر PDF، نمایشگر Word، نمایشگر اکسل، نمایشگر تصویر، نمایشگر HTML، ویژگی های نمایش ایمیل را در برنامه های NET اضافه کنید." + +############################# Header ########################## +title: "رندر و نمایش اسناد
با استفاده از NET API" +description: "API نمایشگر قدرتمند برای ارائه بیش از 180 فرمت سند به PDF، HTML، و تصویر با گزینه های پیکربندی همه کاره." +words: + for: "for" + +actions: + main: "دانلود رایگان NuGet" + main_link: "https://www.nuget.org/packages/GroupDocs.Viewer" + alt: "صدور مجوز" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/net" + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + +release: + title: "نسخه {0} منتشر شد" + notes: "ببینید چه چیزی جدید است" + downloads: "دانلودها" + link: "https://releases.groupdocs.com/viewer/net/release-notes/latest/" + +code: + title: "رندر فایل های پی دی اف در سی شارپ" + more: "نمونه های بیشتر" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + install: "dotnet add package GroupDocs.Viewer" + content: | + ```csharp {style=abap} + // فایل PDF منبع را بارگیری کنید + using (var viewer = new Viewer("resume.pdf")) + { + // گزینه های خروجی HTML را تنظیم کنید، یک فایل در هر صفحه + var viewOptions = + HtmlViewOptions.ForEmbeddedResources("page{0}.html"); + + // PDF را با منابع تعبیه شده به HTML ارائه دهید + viewer.View(viewOptions); + } + ``` + +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer در یک نگاه" + description: "API برای رندر، نمایش، تبدیل اسناد، اسلایدها، نمودارها و بسیاری از انواع اسناد دیگر در برنامه های NET" + features: + # feature loop + - title: "اسناد را کارآمد و قابل اعتماد مشاهده کنید" + content: "با GroupDocs.Viewer API می‌توانید با حفظ یکپارچگی محتوا و ساختار سند، اسناد را با هر فرمت قابل پشتیبانی به HTML، JPEG، PNG، و PDF با گزینه‌های منعطف و قدرتمند ارائه کنید. GroupDocs.Viewer از .NET Framework 4.6.2 و .NET 6.0 پشتیبانی می کند، روی پلتفرم های ویندوز و لینوکس کار می کند." + + # feature loop + - title: "اکثر فرمت های فایل و سند محبوب پشتیبانی می شوند" + content: "ما از ارائه بیش از 180 فرمت فایل و سند محبوب پشتیبانی می کنیم که شامل Word، Excel، PDF، PowerPoint، خانواده فرمت های OpenDocument، آرشیو، تصاویر Raster و Vector، کتاب های الکترونیکی، زبان های برنامه نویسی و نشانه گذاری ها، و بسیاری از انواع فایل های دیگر، از جمله رمزگذاری شده است. فایل هایی با محافظت از رمز عبور" + + # feature loop + - title: "خروجی قابل تنظیم" + content: "GroupDocs.Viewer نه تنها اجازه می دهد تا سند را رندر کند، بلکه کنترل کند که دقیقاً چه قسمت هایی از سند باید رندر شوند یا اکنون، چگونه باید رندر شوند و تبدیل های مختلف را در خروجی رندر شده اعمال می کند." + + # feature loop + - title: "UI برای ASP.NET Core" + content: "ما یک بسته UI منبع باز برای ASP.NET Core ارائه می دهیم که می تواند در عرض چند دقیقه به پروژه شما اضافه شود. بسته Viewer.UI شامل یک web-UI مبتنی بر Angular است و مجموعه ای از APIهای مفید و ارائه دهندگان ذخیره سازی داده را ارائه می دهد." + +############################# Platforms ############################ +platforms: + enable: true + title: "پشتیبانی از پلتفرم ها" + description: "GroupDocs.Viewer برای دات نت از سیستم عامل ها، فریمورک ها و مدیران بسته های زیر پشتیبانی می کند" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "VS Code" + image: "vs_code" + # platform loop + - title: "ReSharper" + image: "resharper" + # platform loop + - title: "macOS" + image: "finder" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "NuGet" + image: "nuget" + packages: + # packages loop + - title: "بسته مخصوص ویندوز" + content: | + * از .NET Framework 4.6.2+ و .NET 6.0 پشتیبانی می کند + * جامع ترین فرمت های فایل پشتیبانی می کند + * بستگی به System.Drawing و System.Drawing.Common دارد + action: "دانلود NuGet" + action_link: "https://www.nuget.org/packages/GroupDocs.Viewer" + # packages loop + - title: "بسته کراس پلت فرم" + content: | + * پشتیبانی از دات نت 6.0 و نسخه های بالاتر + * پشتیبانی از فرمت های فایل محدود + * روی ویندوز، لینوکس و macOS کار می کند + action: "دانلود NuGet" + action_link: "https://www.nuget.org/packages/GroupDocs.Viewer.CrossPlatform" + +############################# File formats ############################ +formats: + enable: true + title: "فرمت های فایل پشتیبانی شده" + description: | + GroupDocs.Viewer برای NET از عملیات با زیر پشتیبانی می‌کند [formats](https://docs.groupdocs.com/viewer/net/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### مایکروسافت آفیس، OpenDocument و فرمت های متنی + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX {{< landing/tooltip icon="windows" title="پشتیبانی شده توسط بسته ویژه ویندوز" >}} + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE {{< landing/tooltip icon="windows" title="پشتیبانی شده توسط بسته ویژه ویندوز" >}} + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### تصاویر، گرافیک و نمودارها + * **تصاویر شطرنجی:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB {{< landing/tooltip icon="windows" title="پشتیبانی شده توسط بسته ویژه ویندوز" >}} + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### دیگر + * **وب:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM {{< landing/tooltip icon="windows" title="پشتیبانی شده توسط بسته ویژه ویندوز" >}} + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **آرشیوها:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **دیگر:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "ویژگی های GroupDocs.Viewer" + description: "رندر، نمایش، و تبدیل یکپارچه PDF و اسناد آفیس" + + items: + # feature loop + - icon: "viewhtml" + title: "مشاهده اسناد در HTML" + content: "هر نوع سندی را با CSS و SVG به یک سند HTML تبدیل کنید، که می تواند در هر مرورگر وب مدرن نمایش داده شود." + + # feature loop + - icon: "rasterize" + title: "اسناد را شطرنجی کنید" + content: "هر قالب سند قابل پشتیبانی را با فرمت تصویر قابل تنظیم و کیفیت فشرده سازی به تصویر شطرنجی تبدیل کنید." + + # feature loop + - icon: "sourcecode" + title: "کدهای برنامه نویسی را رندر و برجسته کنید" + content: "پشتیبانی از همه زبان‌های برنامه‌نویسی، اسکریپت‌نویسی و نشانه‌گذاری محبوب، با قابلیت تجزیه و برجسته کردن نحو آنها." + + # feature loop + - icon: "convertpdf" + title: "تبدیل به PDF" + content: "سند با هر فرمت قابل پشتیبانی را می توان به راحتی با گزینه های قابل تنظیم به PDF تبدیل و ذخیره کرد." + + # feature loop + - icon: "transform" + title: "تغییرات را اعمال کنید" + content: "سند خروجی را می توان در حین رندر تبدیل کرد - صفحات را می توان چرخاند و/یا مرتب کرد و واترمارک متنی در بالای آنها قرار داد." + + # feature loop + - icon: "adjustment" + title: "تنظیم خروجی HTML" + content: "اسناد HTML خروجی، تولید شده توسط GroupDocs.Viewer، را می توان بسیار دقیق تنظیم کرد: امکان ذخیره در جریان یا فایل، با منابع خارجی یا جاسازی شده، تماس های برگشتی و غیره وجود دارد." + + # feature loop + - icon: "complex" + title: "پشتیبانی از ساختارهای پیچیده سند" + content: "GroupDocs.Viewer نه تنها از اسناد منفرد، بلکه از فایل‌هایی نیز پشتیبانی می‌کند که در داخل شامل فهرست یا ساختار سلسله مراتبی از اسناد هستند، مانند پیام‌های ایمیل با پیوست‌ها، آرشیوهای ZIP با فایل‌های داخلی درون پوشه‌ها، تصاویر TIFF چند صفحه‌ای و غیره." + + # feature loop + - icon: "optimization" + title: "گزینه های بهینه سازی" + content: "GroupDocs.Viewer حاوی یک زیرسیستم کش قابل تنظیم است که می تواند با استفاده از نسخه های ذخیره شده اسناد، زمان بارگذاری را تسریع بخشد. همچنین مجموعه ای از گزینه های مختلف برای فرمت های مختلف اجازه می دهد تا برخی از بخش ها یا جنبه های غیر ضروری اسناد را از رندر حذف کنید (فونت ها، کاربرگ های مخفی، پیوست های ایمیل) برای بهینه سازی عملکرد کلی." + + # feature loop + - icon: "passwordprotected" + title: "پشتیبانی از اسناد محافظت شده با رمز عبور" + content: "GroupDocs.Viewer اجازه می دهد تا اسناد رمزگذاری شده را از انواع مختلف باز کنید: PDF، WordProcessing، Spreadsheet، Presentation و غیره، با تعیین رمز عبور در گزینه های بارگیری." + +############################# Code samples ############################ +code_samples: + enable: true + title: "نمونه کد" + description: "برخی از موارد معمولی GroupDocs.Viewer برای عملیات NET استفاده می کنند" + items: + # code sample loop + - title: "DOCX را به HTML رندر کنید" + content: | + ویژگی های کلاس [HtmlViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/htmlviewoptions/) به شما امکان می دهد فرآیند تبدیل را کنترل کنید، در مورد آن اینجا[HTML](https://docs.groupdocs.com/viewer/net/rendering-to-html/). به عنوان مثال، می توانید تمام منابع خارجی را در فایل HTML خروجی جاسازی کنید، فایل خروجی را کوچک کنید و آن را برای چاپ بهینه کنید. + {{< landing/code title="C#">}} + ```csharp {style=abap} + using GroupDocs.Viewer; + using GroupDocs.Viewer.Options; + + // بیننده فوری + using (Viewer viewer = new Viewer("resume.docx")) + { + // گزینه های خروجی HTML را تنظیم کنید + HtmlViewOptions options = HtmlViewOptions.ForEmbeddedResources(); + + // DOCX را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(options); + } + ``` + {{< /landing/code >}} + # code sample loop + - title: "PPTX را به PDF صادر کنید" + content: | + یک نمونه کلاس [PdfViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/pdfviewoptions/) ایجاد کنید و آن را به [Viewer.View](https://reference.groupdocs.com/viewer/net/groupdocs.viewer/viewer/view/#view) ارسال کنید. ر برای تبدیل فایل پاورپوینت PPTX به PDF. ویژگی های کلاس PdfViewOptions به شما امکان می دهد فرآیند تبدیل را کنترل کنید. به عنوان مثال، می توانید از فایل خروجی محافظت کنید، صفحات آن را مجددا مرتب کنید و کیفیت تصاویر سند را مشخص کنید. برای جزئیات به [PDF](https://docs.groupdocs.com/viewer/net/rendering-to-pdf/) مراجعه کنید. + {{< landing/code title="C#">}} + ```csharp {style=abap} + using GroupDocs.Viewer; + using GroupDocs.Viewer.Options; + + using (var viewer = new Viewer("presentation.pptx")) + { + // گزینه های PDF خروجی را تنظیم کنید + var viewOptions = new PdfViewOptions("presentation.pdf"); + + // PPTX را به PDF صادر کنید + viewer.View(viewOptions); + } + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "بررسی محصولات GroupDocs" +# description: "فقط حرف ما را قبول نکنید. ببینید سایر توسعه دهندگان در مورد API های ما چه می گویند" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "خدمات عالی و محصولات عالی. آنها در طول فرآیند اجرای GroupDocs.Viewer برای دات نت بسیار مفید و پاسخگو بودند، نمی توان آنها را به اندازه کافی توصیه کرد." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "پس از پیاده سازی و استفاده از GroupDocs.Viewer برای دات نت در پروژه، به نظر می رسد که بسیار خوب کار می کند. من با مدارک زیادی تست کردم و تا الان خیلی خوبه. همه چیزهایی که به آن پرتاب کرده‌ام به خوبی رندر می‌شوند و به همان خوبی که در یک نمایشگر PDF یا MS Word به نظر می‌رسند." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- \ No newline at end of file diff --git a/content/viewer/net/_index.fr.md b/content/viewer/net/_index.fr.md new file mode 100644 index 00000000..b78578ad --- /dev/null +++ b/content/viewer/net/_index.fr.md @@ -0,0 +1,305 @@ +--- +############################# Static ########################## +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + +############################# Head ############################ +head_title: "API de visualisation de documents .NET, rendu PDF Word Excel Image HTML Diagramme" +head_description: "Visionneuse de fichiers C# ASP.NET et API de rendu. Ajoutez une visionneuse PDF, une visionneuse Word, une visionneuse Excel, une visionneuse d'images, une visionneuse HTML et des fonctionnalités de visionneuse de courrier électronique dans les applications .NET." + +############################# Header ########################## +title: "Rendre et afficher des documents
à l'aide de l'API .NET" +description: "API de visualisation puissante pour restituer plus de 180 formats de documents au format PDF, HTML et Image avec des options de configuration polyvalentes." +words: + for: "for" + +actions: + main: "Téléchargement gratuit de NuGet" + main_link: "https://www.nuget.org/packages/GroupDocs.Viewer" + alt: "Licence" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/net" + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + +release: + title: "Version {0} publiée" + notes: "Nouveautés" + downloads: "Téléchargements" + link: "https://releases.groupdocs.com/viewer/net/release-notes/latest/" + +code: + title: "Rendre les fichiers PDF en C#" + more: "Plus d'exemples" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + install: "dotnet add package GroupDocs.Viewer" + content: | + ```csharp {style=abap} + // Charger le fichier PDF source + using (var viewer = new Viewer("resume.pdf")) + { + // Définir les options HTML de sortie + var viewOptions = + HtmlViewOptions.ForEmbeddedResources("page{0}.html"); + + // Rendu PDF en HTML avec des ressources intégrées + viewer.View(viewOptions); + } + ``` + +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer en un coup d'œil" + description: "API pour restituer, afficher, convertir des documents, des diapositives, des diagrammes et de nombreux autres types de documents dans les applications .NET" + features: + # feature loop + - title: "Visualisez les documents de manière efficace et fiable" + content: "Avec l'API GroupDocs.Viewer, vous pouvez restituer efficacement des documents de tous les formats pris en charge au format HTML, JPEG, PNG et PDF avec des options flexibles et puissantes tout en préservant l'intégrité du contenu et de la structure du document. GroupDocs.Viewer prend en charge .NET Framework 4.6.2 et .NET 6.0, il fonctionne sur les plateformes Windows et Linux." + + # feature loop + - title: "Les formats de fichiers et de documents les plus courants sont pris en charge" + content: "Nous prenons en charge le rendu des 180 formats de fichiers et de documents les plus populaires, notamment Word, Excel, PDF, PowerPoint, la famille de formats OpenDocument, les archives, les images raster et vectorielles, les livres électroniques, les langages de programmation et les balises, ainsi que de nombreux autres types de fichiers, y compris les fichiers cryptés. fichiers avec protection par mot de passe." + + # feature loop + - title: "Sortie personnalisable" + content: "GroupDocs.Viewer permet non seulement de restituer le document, mais également de contrôler comment exactement, quelles parties du document doivent être rendues ou maintenant, comment elles doivent être rendues, et d'appliquer différentes transformations à la sortie rendue." + + # feature loop + - title: "Interface utilisateur pour ASP.NET Core" + content: "Nous fournissons un package d'interface utilisateur open source pour ASP.NET Core qui peut être ajouté à votre projet en quelques minutes. Le package Viewer.UI contient une interface utilisateur Web basée sur Angular et fournit un ensemble d'API et de fournisseurs de stockage de données utiles." + +############################# Platforms ############################ +platforms: + enable: true + title: "Prise en charge des plateformes" + description: "GroupDocs.Viewer pour .NET prend en charge les systèmes d'exploitation, frameworks et gestionnaires de packages suivants" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "VS Code" + image: "vs_code" + # platform loop + - title: "ReSharper" + image: "resharper" + # platform loop + - title: "macOS" + image: "finder" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "NuGet" + image: "nuget" + packages: + # packages loop + - title: "Package spécifique à Windows" + content: | + * Prend en charge .NET Framework 4.6.2+ et .NET 6.0 + * Prise en charge des formats de fichiers les plus complets + * Dépend de System.Drawing et System.Drawing.Common + action: "Téléchargement de NuGet" + action_link: "https://www.nuget.org/packages/GroupDocs.Viewer" + # packages loop + - title: "Forfait multiplateforme" + content: | + * Prend en charge .NET 6.0 et les versions supérieures + * Prise en charge limitée des formats de fichiers + * Fonctionne sous Windows, Linux et macOS + action: "Téléchargement de NuGet" + action_link: "https://www.nuget.org/packages/GroupDocs.Viewer.CrossPlatform" + +############################# File formats ############################ +formats: + enable: true + title: "Formats de fichiers pris en charge" + description: | + GroupDocs.Viewer pour .NET prend en charge les opérations avec les [formats de fichiers](https://docs.groupdocs.com/viewer/net/supported-document-formats/) suivants. + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument et formats texte + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX {{< landing/tooltip icon="windows" title="Pris en charge par le package spécifique à Windows" >}} + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE {{< landing/tooltip icon="windows" title="Pris en charge par le package spécifique à Windows" >}} + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### Images, graphiques et diagrammes + * **Images rastées:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB {{< landing/tooltip icon="windows" title="Pris en charge par le package spécifique à Windows" >}} + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### Autre + * **la toile:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM {{< landing/tooltip icon="windows" title="Pris en charge par le package spécifique à Windows" >}} + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **Les archives:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **Autre:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "Fonctionnalités de GroupDocs.Viewer" + description: "Rendre, afficher et convertir en toute transparence des documents PDF et Office" + + items: + # feature loop + - icon: "viewhtml" + title: "Afficher les documents en HTML" + content: "Convertissez un document de n'importe quel type en un document HTML avec CSS et SVG, qui peut être affiché dans n'importe quel navigateur Web moderne." + + # feature loop + - icon: "rasterize" + title: "Pixelliser les documents" + content: "Pixellisez n'importe quel format de document pris en charge sur l'image raster, avec un format d'image et une qualité de compression réglables." + + # feature loop + - icon: "sourcecode" + title: "Restituer et mettre en évidence les codes de programmation" + content: "Prise en charge de tous les langages de programmation, de script et de balisage populaires, avec possibilité d'analyser et de mettre en évidence leur syntaxe." + + # feature loop + - icon: "convertpdf" + title: "Convertir en PDF" + content: "Les documents de n'importe quel format pris en charge peuvent être facilement convertis et enregistrés au format PDF avec des options réglables." + + # feature loop + - icon: "transform" + title: "Appliquer des transformations" + content: "Le document de sortie peut être transformé pendant le rendu - les pages peuvent être pivotées et/ou réorganisées et un filigrane de texte peut être placé dessus." + + # feature loop + - icon: "adjustment" + title: "Ajustement de la sortie HTML" + content: "Les documents HTML de sortie, générés par GroupDocs.Viewer, peuvent être réglés très finement: il est permis de les enregistrer dans le flux ou dans un fichier, avec des ressources externes ou intégrées, des rappels, etc." + + # feature loop + - icon: "complex" + title: "Prise en charge de structures de documents complexes" + content: "GroupDocs.Viewer prend en charge non seulement les documents uniques, mais également les fichiers qui contiennent en interne une liste ou une structure hiérarchique de documents, comme des messages électroniques avec pièces jointes, des archives ZIP avec des fichiers internes dans des dossiers, des images TIFF multipages, etc." + + # feature loop + - icon: "optimization" + title: "Options d'optimisation" + content: "GroupDocs.Viewer contient un sous-système de cache réglable, qui peut réduire le temps de chargement en utilisant les versions mises en cache des documents. De plus, un ensemble d'options différentes pour différents formats permet d'exclure du rendu certaines parties ou aspects inutiles des documents (polices, feuilles de calcul masquées, pièces jointes aux e-mails) pour optimiser les performances globales." + + # feature loop + - icon: "passwordprotected" + title: "Prise en charge des documents protégés par mot de passe" + content: "GroupDocs.Viewer permet d'ouvrir les documents cryptés de différents types : PDF, WordProcessing, Spreadsheet, Présentation et autres, en spécifiant un mot de passe dans les options de chargement." + +############################# Code samples ############################ +code_samples: + enable: true + title: "Exemples de codes" + description: "Quelques cas d'utilisation de GroupDocs.Viewer typique pour les opérations .NET" + items: + # code sample loop + - title: "Rendre DOCX en HTML" + content: | + Les propriétés de classe [HtmlViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/htmlviewoptions/) vous permettent de contrôler le processus de conversion, plus d'informations à ce sujet [ici](https://docs.groupdocs.com/viewer/net/rendering-to-html/). Par exemple, vous pouvez intégrer toutes les ressources externes dans le fichier HTML de sortie, réduire le fichier de sortie et l'optimiser pour l'impression. + {{< landing/code title="C#">}} + ```csharp {style=abap} + using GroupDocs.Viewer; + using GroupDocs.Viewer.Options; + + // Instancier le visualiseur + using (Viewer viewer = new Viewer("resume.docx")) + { + // Définir les options HTML de sortie + HtmlViewOptions options = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre DOCX en HTML avec des ressources intégrées + viewer.View(options); + } + ``` + {{< /landing/code >}} + # code sample loop + - title: "Exporter PPTX en PDF" + content: | + Créez une instance de classe [PdfViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/pdfviewoptions/) et transmettez-la à [Viewer.View](https://reference.groupdocs.com/viewer/net/groupdocs.viewer/viewer/view/#view) pour convertir un fichier PowerPoint PPTX en PDF. Les propriétés de la classe PdfViewOptions vous permettent de contrôler le processus de conversion. Par exemple, vous pouvez protéger le fichier PDF de sortie, réorganiser ses pages et spécifier la qualité des images du document. Reportez-vous à la [section de documentation suivante](https://docs.groupdocs.com/viewer/net/rendering-to-pdf/) pour plus de détails. + {{< landing/code title="C#">}} + ```csharp {style=abap} + using GroupDocs.Viewer; + using GroupDocs.Viewer.Options; + + using (var viewer = new Viewer("presentation.pptx")) + { + // Définir les options du PDF de sortie + var viewOptions = new PdfViewOptions("presentation.pdf"); + + // Exporter PPTX en PDF + viewer.View(viewOptions); + } + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "Avis sur les produits GroupDocs" +# description: "Ne vous contentez pas de nous croire sur parole. Découvrez ce que d'autres développeurs disent de nos API" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Excellent service et excellents produits. Ils ont été extrêmement utiles et réactifs pendant le processus de mise en œuvre de GroupDocs.Viewer pour .NET, et ne sauraient les recommander assez." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Après avoir implémenté et utilisé GroupDocs.Viewer pour .NET dans le projet, cela semble très bien fonctionner. J'ai testé avec beaucoup de documents et jusqu'ici tout va bien. Tout ce que j'ai lancé s'affiche bien et est aussi beau que dans une visionneuse PDF ou MS Word." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- \ No newline at end of file diff --git a/content/viewer/net/_index.id.md b/content/viewer/net/_index.id.md new file mode 100644 index 00000000..aa0dd7da --- /dev/null +++ b/content/viewer/net/_index.id.md @@ -0,0 +1,305 @@ +--- +############################# Static ########################## +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + +############################# Head ############################ +head_title: "API penampil dokumen .NET, render Diagram HTML Gambar PDF Word Excel" +head_description: "C# penampil file ASP.NET & API rendering. Tambahkan penampil PDF, penampil Word, penampil Excel, penampil gambar, penampil HTML, fitur penampil email di aplikasi .NET." + +############################# Header ########################## +title: "Render & tampilkan dokumen
menggunakan .NET API" +description: "API Penampil yang kuat untuk merender 180+ format dokumen menjadi PDF, HTML, dan Gambar dengan opsi konfigurasi serbaguna." +words: + for: "for" + +actions: + main: "Unduh NuGet Gratis" + main_link: "https://www.nuget.org/packages/GroupDocs.Viewer" + alt: "Perizinan" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/net" + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + +release: + title: "Versi {0} dirilis" + notes: "Lihat apa yang baru" + downloads: "Unduhan" + link: "https://releases.groupdocs.com/viewer/net/release-notes/latest/" + +code: + title: "Render file PDF di C#" + more: "Lebih banyak contoh" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + install: "dotnet add package GroupDocs.Viewer" + content: | + ```csharp {style=abap} + // Muat file PDF sumber + using (var viewer = new Viewer("resume.pdf")) + { + // Tetapkan opsi HTML keluaran, satu file per halaman + var viewOptions = + HtmlViewOptions.ForEmbeddedResources("page{0}.html"); + + // Render PDF ke HTML dengan sumber daya tertanam + viewer.View(viewOptions); + } + ``` + +############################# Overview ############################ +overview: + enable: true + title: "Sekilas tentang GroupDocs.Viewer" + description: "API untuk merender, menampilkan, mengonversi dokumen, slide, diagram, dan banyak jenis dokumen lainnya dalam aplikasi .NET" + features: + # feature loop + - title: "Lihat dokumen secara efisien & andal" + content: "Dengan GroupDocs.Viewer API Anda dapat secara efisien merender dokumen dari format apa pun yang didukung ke HTML, JPEG, PNG, dan PDF dengan opsi yang fleksibel dan kuat dengan tetap menjaga integritas konten dan struktur dokumen. GroupDocs.Viewer mendukung .NET Framework 4.6.2 dan .NET 6.0, berfungsi pada platform Windows dan Linux." + + # feature loop + - title: "Sebagian besar format file dan dokumen populer didukung" + content: "Kami mendukung rendering lebih dari 180 format file dan dokumen paling populer yang mencakup Word, Excel, PDF, PowerPoint, keluarga format OpenDocument, Arsip, gambar Raster dan Vektor, e-Book, bahasa pemrograman dan markup, dan banyak jenis file lainnya, termasuk terenkripsi file dengan perlindungan kata sandi." + + # feature loop + - title: "Keluaran yang dapat disesuaikan" + content: "GroupDocs.Viewer memungkinkan tidak hanya untuk merender dokumen, tetapi juga untuk mengontrol bagaimana tepatnya, bagian dokumen mana yang harus dirender atau sekarang, bagaimana harus dirender, dan untuk menerapkan transformasi berbeda pada keluaran yang dirender." + + # feature loop + - title: "UI untuk ASP.NET Inti" + content: "Kami menyediakan paket UI sumber terbuka untuk ASP.NET Core yang dapat ditambahkan ke proyek Anda dalam beberapa menit. Paket Viewer.UI berisi UI web berbasis Angular dan memberikan serangkaian API dan penyedia penyimpanan data yang berguna." + +############################# Platforms ############################ +platforms: + enable: true + title: "Dukungan platform" + description: "GroupDocs.Viewer untuk .NET mendukung sistem operasi, kerangka kerja, dan manajer paket berikut" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "VS Code" + image: "vs_code" + # platform loop + - title: "ReSharper" + image: "resharper" + # platform loop + - title: "macOS" + image: "finder" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "NuGet" + image: "nuget" + packages: + # packages loop + - title: "Paket khusus Windows" + content: | + * Mendukung .NET Framework 4.6.2+ dan .NET 6.0 + * Dukungan format file terlengkap + * Tergantung pada System.Drawing dan System.Drawing.Common + action: "Unduhan NuGet" + action_link: "https://www.nuget.org/packages/GroupDocs.Viewer" + # packages loop + - title: "Paket lintas platform" + content: | + * Mendukung .NET 6.0 dan versi yang lebih tinggi + * Dukungan format file terbatas + * Bekerja di Windows, Linux dan macOS + action: "Unduhan NuGet" + action_link: "https://www.nuget.org/packages/GroupDocs.Viewer.CrossPlatform" + +############################# File formats ############################ +formats: + enable: true + title: "Format file yang didukung" + description: | + GroupDocs.Viewer untuk .NET mendukung operasi dengan berikut [format file](https://docs.groupdocs.com/viewer/net/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument dan format teks + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX {{< landing/tooltip icon="windows" title="Didukung oleh paket khusus Windows" >}} + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE {{< landing/tooltip icon="windows" title="Didukung oleh paket khusus Windows" >}} + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### Gambar, Grafik & Diagram + * **Gambar raster:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB {{< landing/tooltip icon="windows" title="Didukung oleh paket khusus Windows" >}} + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### Lainnya + * **jaring:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM {{< landing/tooltip icon="windows" title="Didukung oleh paket khusus Windows" >}} + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **Arsip:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **Lainnya:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "Fitur GroupDocs.Viewer" + description: "Render, tampilkan, dan konversi PDF dan Dokumen Office dengan lancar" + + items: + # feature loop + - icon: "viewhtml" + title: "Lihat dokumen dalam HTML" + content: "Ubah dokumen jenis apa pun menjadi dokumen HTML dengan CSS dan SVG, yang dapat ditampilkan di browser web modern mana pun." + + # feature loop + - icon: "rasterize" + title: "Rasterisasi dokumen" + content: "Rasterisasi format dokumen apa pun yang didukung ke gambar raster, dengan format gambar dan kualitas kompresi yang dapat disesuaikan." + + # feature loop + - icon: "sourcecode" + title: "Render dan sorot kode pemrograman" + content: "Dukungan untuk semua bahasa pemrograman, skrip, dan markup populer, dengan kemampuan untuk mengurai dan menyorot sintaksisnya." + + # feature loop + - icon: "convertpdf" + title: "Konversikan ke PDF" + content: "Dokumen format apa pun yang didukung dapat dengan mudah dikonversi dan disimpan ke PDF dengan opsi yang dapat disesuaikan." + + # feature loop + - icon: "transform" + title: "Terapkan transformasi" + content: "Dokumen keluaran dapat diubah selama rendering - halaman dapat diputar dan/atau disusun ulang, dan tanda air teks dapat ditempatkan di atasnya." + + # feature loop + - icon: "adjustment" + title: "Penyesuaian keluaran HTML" + content: "Dokumen HTML keluaran, yang dihasilkan oleh GroupDocs.Viewer, dapat disetel dengan sangat baik: diperbolehkan untuk menyimpan ke aliran atau file, dengan sumber daya eksternal atau tertanam, panggilan balik, dan sebagainya." + + # feature loop + - icon: "complex" + title: "Dukungan struktur dokumen yang kompleks" + content: "GroupDocs.Viewer tidak hanya mendukung satu dokumen, tetapi juga file, yang secara internal berisi daftar atau struktur hierarki dokumen, seperti pesan email dengan lampiran, arsip ZIP dengan file internal di dalam folder, gambar TIFF multi-halaman, dan sebagainya." + + # feature loop + - icon: "optimization" + title: "Opsi pengoptimalan" + content: "GroupDocs.Viewer berisi subsistem cache yang dapat disesuaikan, yang dapat mempercepat waktu pemuatan dengan menggunakan versi dokumen yang di-cache. Juga serangkaian opsi berbeda untuk format berbeda memungkinkan untuk mengecualikan beberapa bagian atau aspek dokumen yang tidak diperlukan dari rendering (font, lembar kerja tersembunyi, lampiran email) untuk mengoptimalkan kinerja keseluruhan" + + # feature loop + - icon: "passwordprotected" + title: "Dukungan dokumen yang dilindungi kata sandi" + content: "GroupDocs.Viewer memungkinkan untuk membuka dokumen terenkripsi dari berbagai jenis: PDF, WordProcessing, Spreadsheet, Presentasi, dan lainnya, dengan menentukan kata sandi dalam opsi pemuatan." + +############################# Code samples ############################ +code_samples: + enable: true + title: "Contoh kode" + description: "Beberapa kasus penggunaan GroupDocs.Viewer tipikal untuk operasi .NET" + items: + # code sample loop + - title: "Render DOCX ke HTML" + content: | + Properti kelas [HtmlViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/htmlviewoptions/) memungkinkan Anda mengontrol proses konversi, lebih lanjut tentang itu [di sini](https://docs.groupdocs.com/viewer/net/rendering-to-html/). Misalnya, Anda dapat menyematkan semua sumber daya eksternal dalam file HTML keluaran, memperkecil file keluaran, dan mengoptimalkannya untuk dicetak. + {{< landing/code title="C#">}} + ```csharp {style=abap} + using GroupDocs.Viewer; + using GroupDocs.Viewer.Options; + + // Buat instance penampil + using (Viewer viewer = new Viewer("resume.docx")) + { + // Tetapkan opsi HTML keluaran + HtmlViewOptions options = HtmlViewOptions.ForEmbeddedResources(); + + // Render DOCX ke HTML dengan sumber daya tertanam + viewer.View(options); + } + ``` + {{< /landing/code >}} + # code sample loop + - title: "Ekspor PPTX ke PDF" + content: | + Buat instance kelas [PdfViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/pdfviewoptions/) dan teruskan ke [Viewer.View](https://reference.groupdocs.com/viewer/net/groupdocs.viewer/viewer/view/#view) untuk mengonversi file PowerPoint PPTX ke PDF. Properti kelas PdfViewOptions memungkinkan Anda mengontrol proses konversi. Misalnya, Anda dapat melindungi file PDF keluaran, menyusun ulang halamannya, dan menentukan kualitas gambar dokumen. Lihat [bagian dokumentasi berikut](https://docs.groupdocs.com/viewer/net/rendering-to-pdf/) untuk mengetahui detailnya. + {{< landing/code title="C#">}} + ```csharp {style=abap} + using GroupDocs.Viewer; + using GroupDocs.Viewer.Options; + + using (var viewer = new Viewer("presentation.pptx")) + { + // Atur opsi keluaran PDF + var viewOptions = new PdfViewOptions("presentation.pdf"); + + // Ekspor PPTX ke PDF + viewer.View(viewOptions); + } + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "Ulasan produk GroupDocs" +# description: "Jangan hanya percaya kata-kata kami begitu saja. Lihat apa yang dikatakan pengembang lain tentang API kami" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Pelayanan prima dan produk unggulan. Mereka sangat membantu dan responsif selama proses implementasi GroupDocs.Viewer untuk .NET, dan sangat merekomendasikannya." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Setelah mengimplementasikan dan menggunakan GroupDocs.Viewer untuk .NET dalam proyek tersebut tampaknya berfungsi dengan baik. Saya telah menguji dengan banyak dokumen dan sejauh ini bagus. Semua yang saya berikan ditampilkan dengan baik dan terlihat sama bagusnya dengan penampil PDF atau MS Word." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- \ No newline at end of file diff --git a/content/viewer/net/_index.it.md b/content/viewer/net/_index.it.md new file mode 100644 index 00000000..de813534 --- /dev/null +++ b/content/viewer/net/_index.it.md @@ -0,0 +1,305 @@ +--- +############################# Static ########################## +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + +############################# Head ############################ +head_title: "API per visualizzatore di documenti .NET, rendering di PDF Word Excel Immagine HTML Diagramma" +head_description: "Visualizzatore di file C# ASP.NET e API di rendering. Aggiungi funzionalità di visualizzatore PDF, visualizzatore Word, visualizzatore Excel, visualizzatore immagini, visualizzatore HTML, visualizzatore e-mail nelle app .NET." + +############################# Header ########################## +title: "Rendering e visualizzazione di documenti
utilizzando l'API .NET" +description: "Potente API visualizzatore per eseguire il rendering di oltre 180 formati di documenti in PDF, HTML e immagini con opzioni di configurazione versatili." +words: + for: "for" + +actions: + main: "Download gratuito di NuGet" + main_link: "https://www.nuget.org/packages/GroupDocs.Viewer" + alt: "Licenza" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/net" + title: "Pronto per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + +release: + title: "Versione {0} rilasciata" + notes: "Scopri le novità" + downloads: "Download" + link: "https://releases.groupdocs.com/viewer/net/release-notes/latest/" + +code: + title: "Rendering di file PDF in C#" + more: "Altri esempi" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + install: "dotnet add package GroupDocs.Viewer" + content: | + ```csharp {style=abap} + // Carica il file PDF di origine + using (var viewer = new Viewer("resume.pdf")) + { + // Imposta le opzioni HTML di output, un file per pagina + var viewOptions = + HtmlViewOptions.ForEmbeddedResources("page{0}.html"); + + // Renderizza PDF in HTML con risorse incorporate + viewer.View(viewOptions); + } + ``` + +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer in breve" + description: "API per eseguire il rendering, visualizzare, convertire documenti, diapositive, diagrammi e molti altri tipi di documenti nelle applicazioni .NET" + features: + # feature loop + - title: "Visualizza i documenti in modo efficiente e affidabile" + content: "Con l'API GroupDocs.Viewer puoi eseguire il rendering efficiente di documenti di qualsiasi formato supportato in HTML, JPEG, PNG e PDF con opzioni flessibili e potenti mantenendo l'integrità del contenuto e della struttura del documento. GroupDocs.Viewer supporta .NET Framework 4.6.2 e .NET 6.0, funziona su piattaforme Windows e Linux." + + # feature loop + - title: "Sono supportati i formati di file e documenti più diffusi" + content: "Supportiamo il rendering dei 180 formati di file e documenti più diffusi tra cui Word, Excel, PDF, PowerPoint, la famiglia di formati OpenDocument, archivi, immagini raster e vettoriali, e-book, linguaggi di programmazione e markup e molti altri tipi di file, inclusi quelli crittografati file protetti da password." + + # feature loop + - title: "Uscita personalizzabile" + content: "GroupDocs.Viewer consente non solo di eseguire il rendering del documento, ma anche di controllare come esattamente, quali parti del documento dovrebbero essere renderizzate o ora, come dovrebbero essere renderizzate e di applicare diverse trasformazioni all'output renderizzato." + + # feature loop + - title: "Interfaccia utente per ASP.NET Core" + content: "Forniamo un pacchetto di interfaccia utente open source per ASP.NET Core che può essere aggiunto al tuo progetto in un paio di minuti. Il pacchetto Viewer.UI contiene un'interfaccia utente Web basata su Angular e fornisce una serie di API utili e provider di archiviazione dati." + +############################# Platforms ############################ +platforms: + enable: true + title: "Supporto delle piattaforme" + description: "GroupDocs.Viewer per .NET supporta i seguenti sistemi operativi, framework e gestori di pacchetti" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "VS Code" + image: "vs_code" + # platform loop + - title: "ReSharper" + image: "resharper" + # platform loop + - title: "macOS" + image: "finder" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "NuGet" + image: "nuget" + packages: + # packages loop + - title: "Pacchetto specifico per Windows" + content: | + * Supporta .NET Framework 4.6.2+ e .NET 6.0 + * Il supporto dei formati di file più completo + * Dipende da System.Drawing e System.Drawing.Common + action: "Scarica NuGet" + action_link: "https://www.nuget.org/packages/GroupDocs.Viewer" + # packages loop + - title: "Pacchetto multipiattaforma" + content: | + * Supporta .NET 6.0 e versioni successive + * Supporto di formati di file limitati + * Funziona su Windows, Linux e macOS + action: "Scarica NuGet" + action_link: "https://www.nuget.org/packages/GroupDocs.Viewer.CrossPlatform" + +############################# File formats ############################ +formats: + enable: true + title: "Formati di file supportati" + description: | + GroupDocs.Viewer per .NET supporta operazioni con i seguenti [formati di file](https://docs.groupdocs.com/viewer/net/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument e formati di testo + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX {{< landing/tooltip icon="windows" title="Supportato dal pacchetto specifico di Windows" >}} + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE {{< landing/tooltip icon="windows" title="Supportato dal pacchetto specifico di Windows" >}} + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### Immagini, grafica e diagrammi + * **Immagini raster:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB {{< landing/tooltip icon="windows" title="Supportato dal pacchetto specifico di Windows" >}} + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### Altro + * **ragnatela:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM {{< landing/tooltip icon="windows" title="Supportato dal pacchetto specifico di Windows" >}} + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **Archivi:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **Altro:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "Funzionalità di GroupDocs.Viewer" + description: "Esegue il rendering, la visualizzazione e la conversione di documenti PDF e Office senza problemi" + + items: + # feature loop + - icon: "viewhtml" + title: "Visualizza i documenti in HTML" + content: "Converti documenti di qualsiasi tipo in un documento HTML con CSS e SVG, che può essere visualizzato in qualsiasi browser web moderno." + + # feature loop + - icon: "rasterize" + title: "Rasterizzare i documenti" + content: "Rasterizza qualsiasi formato di documento supportabile nell'immagine raster, con formato immagine e qualità di compressione regolabili." + + # feature loop + - icon: "sourcecode" + title: "Restituisci ed evidenzia i codici di programmazione" + content: "Supporto di tutti i linguaggi di programmazione, scripting e markup più diffusi, con capacità di analizzare ed evidenziare la loro sintassi." + + # feature loop + - icon: "convertpdf" + title: "Converti in PDF" + content: "I documenti di qualsiasi formato supportato possono essere facilmente convertiti e salvati nel PDF con opzioni regolabili." + + # feature loop + - icon: "transform" + title: "Applicare trasformazioni" + content: "Il documento di output può essere trasformato durante il rendering: le pagine possono essere ruotate e/o riorganizzate e la filigrana di testo può essere posizionata sopra di esse." + + # feature loop + - icon: "adjustment" + title: "Regolazione dell'output HTML" + content: "I documenti HTML di output, generati da GroupDocs.Viewer, possono essere ottimizzati in modo molto preciso: è consentito salvare nello stream o nel file, con risorse esterne o incorporate, callback e così via." + + # feature loop + - icon: "complex" + title: "Supporto di strutture documentali complesse" + content: "GroupDocs.Viewer supporta non solo i singoli documenti, ma anche i file che contengono internamente un elenco o una struttura gerarchica di documenti, come messaggi di posta elettronica con allegati, archivi ZIP con file interni all'interno di cartelle, immagini TIFF multipagina e così via." + + # feature loop + - icon: "optimization" + title: "Opzioni di ottimizzazione" + content: "GroupDocs.Viewer contiene un sottosistema di cache regolabile, che può ridurre i tempi di caricamento utilizzando le versioni dei documenti memorizzate nella cache. Inoltre una serie di diverse opzioni per diversi formati consente di escludere alcune parti o aspetti non necessari dei documenti dal rendering (caratteri, fogli di lavoro nascosti, allegati e-mail) per ottimizzare le prestazioni complessive" + + # feature loop + - icon: "passwordprotected" + title: "Supporto di documenti protetti da password" + content: "GroupDocs.Viewer consente di aprire documenti crittografati di diversi tipi: PDF, elaborazione testi, fogli di calcolo, presentazioni e altri, specificando una password nelle opzioni di caricamento." + +############################# Code samples ############################ +code_samples: + enable: true + title: "Esempi di codici" + description: "Alcuni casi d'uso tipici di GroupDocs.Viewer per operazioni .NET" + items: + # code sample loop + - title: "Rendere DOCX in HTML" + content: | + Le proprietà della classe [HtmlViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/htmlviewoptions/) ti consentono di controllare il processo di conversione, maggiori informazioni [qui](https://docs.groupdocs.com/viewer/net/rendering-to-html/). Ad esempio, puoi incorporare tutte le risorse esterne nel file HTML di output, minimizzare il file di output e ottimizzarlo per la stampa. + {{< landing/code title="C#">}} + ```csharp {style=abap} + using GroupDocs.Viewer; + using GroupDocs.Viewer.Options; + + // Visualizzatore di istanze + using (Viewer viewer = new Viewer("resume.docx")) + { + // Imposta le opzioni HTML di output + HtmlViewOptions options = HtmlViewOptions.ForEmbeddedResources(); + + // Renderizza DOCX in HTML con risorse incorporate + viewer.View(options); + } + ``` + {{< /landing/code >}} + # code sample loop + - title: "Esporta PPTX in PDF" + content: | + Crea un'istanza della classe [PdfViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/pdfviewoptions/) e passala al file [Viewer.View](https://reference.groupdocs.com/viewer/net/groupdocs.viewer/viewer/view/#view) per convertire un file PowerPoint PPTX in PDF. Le proprietà della classe PdfViewOptions consentono di controllare il processo di conversione. Ad esempio, puoi proteggere il file PDF di output, riordinarne le pagine e specificare la qualità delle immagini del documento. Fare riferimento alla [seguente sezione della documentazione](https://docs.groupdocs.com/viewer/net/rendering-to-pdf/) per i dettagli. + {{< landing/code title="C#">}} + ```csharp {style=abap} + using GroupDocs.Viewer; + using GroupDocs.Viewer.Options; + + using (var viewer = new Viewer("presentation.pptx")) + { + // Imposta le opzioni PDF di output + var viewOptions = new PdfViewOptions("presentation.pdf"); + + // Esporta PPTX in PDF + viewer.View(viewOptions); + } + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "Recensioni dei prodotti GroupDocs" +# description: "Non limitarti a crederci sulla parola. Scopri cosa dicono gli altri sviluppatori sulle nostre API" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Servizio eccellente e prodotti eccellenti. Si sono rivelati estremamente utili e reattivi durante il processo di implementazione di GroupDocs.Viewer per .NET, non posso che consigliarli vivamente." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Dopo aver implementato e utilizzato GroupDocs.Viewer for .NET nel progetto sembra funzionare molto bene. Ho testato con molti documenti e finora tutto bene. Tutto ciò che ho inserito viene visualizzato bene e ha lo stesso aspetto di un visualizzatore PDF o MS Word." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- \ No newline at end of file diff --git a/content/viewer/net/_index.ja.md b/content/viewer/net/_index.ja.md new file mode 100644 index 00000000..f7807749 --- /dev/null +++ b/content/viewer/net/_index.ja.md @@ -0,0 +1,305 @@ +--- +############################# Static ########################## +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + +############################# Head ############################ +head_title: ".NET ドキュメント ビューア API、PDF Word Excel 画像 HTML 図のレンダリング" +head_description: "C# ASP.NET ファイル ビューアとレンダリング API。 .NET アプリに PDF ビューア、Word ビューア、Excel ビューア、画像ビューア、HTML ビューア、電子メール ビューア機能を追加します。" + +############################# Header ########################## +title: ".NET APIを使用した
ドキュメントのレンダリングと表示" +description: "多彩な構成オプションを使用して、180 を超えるドキュメント形式を PDF、HTML、および画像にレンダリングする強力なビューア API。" +words: + for: "for" + +actions: + main: "無料の NuGet ダウンロード" + main_link: "https://www.nuget.org/packages/GroupDocs.Viewer" + alt: "ライセンス" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/net" + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + +release: + title: "{0} がリリースされました" + notes: "新機能を見る" + downloads: "ダウンロード" + link: "https://releases.groupdocs.com/viewer/net/release-notes/latest/" + +code: + title: "C# で PDF ファイルをレンダリングする" + more: "他の例" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + install: "dotnet add package GroupDocs.Viewer" + content: | + ```csharp {style=abap} + // ソース PDF ファイルをロードします + using (var viewer = new Viewer("resume.pdf")) + { + // 出力 HTML オプションを設定します + var viewOptions = + HtmlViewOptions.ForEmbeddedResources("page{0}.html"); + + // 埋め込みリソースを使用して PDF を HTML + viewer.View(viewOptions); + } + ``` + +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer の概要" + description: ".NET アプリケーションでドキュメント、スライド、図、その他多くの種類のドキュメントをレンダリング、表示、変換するための API" + features: + # feature loop + - title: "ドキュメントを効率的かつ確実に表示する" + content: "GroupDocs.Viewer API を使用すると、コンテンツとドキュメント構造の整合性を維持しながら、柔軟で強力なオプションを使用して、サポート可能な形式のドキュメントを HTML、JPEG、PNG、PDF に効率的にレンダリングできます。 GroupDocs.Viewer は .NET Framework 4.6.2 および .NET 6.0 をサポートしており、Windows および Linux プラットフォームで動作します。" + + # feature loop + - title: "最も一般的なファイルおよびドキュメント形式がサポートされています" + content: "Word、Excel、PDF、PowerPoint、OpenDocument 形式ファミリー、アーカイブ、ラスター画像とベクター画像、電子書籍、プログラミング言語とマークアップ、および暗号化されたファイルを含むその他の多くのファイル タイプを含む、180 を超える最も一般的なファイルおよびドキュメント形式のレンダリングをサポートしています。パスワードで保護されたファイル。" + + # feature loop + - title: "カスタマイズ可能な出力" + content: "GroupDocs.Viewer を使用すると、ドキュメントをレンダリングするだけでなく、ドキュメントのどの部分をレンダリングするか、現時点でどのようにレンダリングするかを正確に制御し、レンダリングされた出力にさまざまな変換を適用することもできます。" + + # feature loop + - title: "ASP.NET Core の UI" + content: "数分でプロジェクトに追加できる ASP.NET Core 用のオープン ソース UI パッケージが提供されます。 Viewer.UI パッケージには、Angular ベースの Web UI が含まれており、便利な API とデータ ストレージ プロバイダーのセットを提供します。" + +############################# Platforms ############################ +platforms: + enable: true + title: "プラットフォームのサポート" + description: "GroupDocs.Viewer for .NET は、次のオペレーティング システム、フレームワーク、パッケージ マネージャーをサポートしています。" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "VS Code" + image: "vs_code" + # platform loop + - title: "ReSharper" + image: "resharper" + # platform loop + - title: "macOS" + image: "finder" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "NuGet" + image: "nuget" + packages: + # packages loop + - title: "Windows 固有のパッケージ" + content: | + * .NET Framework 4.6.2+および.NET 6.0をサポート + * 最も包括的なファイル形式のサポート + * System.Drawing および System.Drawing.Common に依存します + action: "NuGetのダウンロード" + action_link: "https://www.nuget.org/packages/GroupDocs.Viewer" + # packages loop + - title: "クロスプラットフォームパッケージ" + content: | + * .NET 6.0以降のバージョンをサポート + * 限られたファイル形式のサポート + * Windows、Linux、macOS で動作します + action: "NuGetのダウンロード" + action_link: "https://www.nuget.org/packages/GroupDocs.Viewer.CrossPlatform" + +############################# File formats ############################ +formats: + enable: true + title: "サポートされているファイル形式" + description: | + GroupDocs.Viewer for .NET は、次の [ファイル形式](https://docs.groupdocs.com/viewer/net/supported-document-formats/) での操作をサポートします。 + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office、OpenDocument、およびテキスト形式 + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX {{< landing/tooltip icon="windows" title="Windows 固有のパッケージでサポートされています" >}} + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE {{< landing/tooltip icon="windows" title="Windows 固有のパッケージでサポートされています" >}} + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### 画像、グラフィック、図表 + * **ラスター画像:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB {{< landing/tooltip icon="windows" title="Windows 固有のパッケージでサポートされています" >}} + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### 他の + * **ウェブ:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM {{< landing/tooltip icon="windows" title="Windows 固有のパッケージでサポートされています" >}} + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **アーカイブ:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **他の:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "GroupDocs.Viewer の機能" + description: "PDF および Office ドキュメントをシームレスにレンダリング、表示、変換" + + items: + # feature loop + - icon: "viewhtml" + title: "HTML でドキュメントを表示する" + content: "CSS と SVG を使用して、あらゆる種類のドキュメントを HTML ドキュメントに変換し、最新の Web ブラウザで表示できます。" + + # feature loop + - icon: "rasterize" + title: "ドキュメントをラスタライズする" + content: "サポート可能なドキュメント形式をラスター画像にラスター化し、画像形式と圧縮品質を調整できます。" + + # feature loop + - icon: "sourcecode" + title: "プログラミング コードのレンダリングとハイライト表示" + content: "すべての一般的なプログラミング、スクリプト、マークアップ言語をサポートし、構文を解析して強調表示する機能を備えています。" + + # feature loop + - icon: "convertpdf" + title: "PDFに変換" + content: "サポート可能な形式のドキュメントは、調整可能なオプションを使用して簡単に PDF に変換して保存できます。" + + # feature loop + - icon: "transform" + title: "変換を適用する" + content: "出力ドキュメントはレンダリング中に変換できます。ページは回転および/または再配置でき、テキストの透かしをその上に配置できます。" + + # feature loop + - icon: "adjustment" + title: "HTML出力調整" + content: "GroupDocs.Viewer によって生成される出力 HTML ドキュメントは、非常に細かく調整できます。外部リソースまたは埋め込みリソース、コールバックなどを使用して、ストリームまたはファイルに保存できます。" + + # feature loop + - icon: "complex" + title: "複雑な文書構造のサポート" + content: "GroupDocs.Viewer は、単一のドキュメントだけでなく、添付ファイル付きの電子メール メッセージ、フォルダー内の内部ファイルを含む ZIP アーカイブ、複数ページの TIFF 画像など、ドキュメントのリストまたは階層構造を内部に含むファイルもサポートします。" + + # feature loop + - icon: "optimization" + title: "最適化オプション" + content: "GroupDocs.Viewer には、ドキュメントのキャッシュされたバージョンを使用することで読み込み時間を短縮できる、調整可能なキャッシュ サブシステムが含まれています。また、さまざまな形式に対応するさまざまなオプションのセットにより、ドキュメントの一部の不必要な部分や側面 (フォント、非表示のワークシート、電子メールの添付ファイル) をレンダリングから除外して、全体的なパフォーマンスを最適化することができます。" + + # feature loop + - icon: "passwordprotected" + title: "パスワードで保護されたドキュメントのサポート" + content: "GroupDocs.Viewer を使用すると、読み込みオプションでパスワードを指定することで、PDF、WordProcessing、スプレッドシート、プレゼンテーションなど、さまざまな種類の暗号化されたドキュメントを開くことができます。" + +############################# Code samples ############################ +code_samples: + enable: true + title: "コードサンプル" + description: ".NET 操作用の典型的な GroupDocs.Viewer の使用例" + items: + # code sample loop + - title: "DOCX を HTML にレンダリングする" + content: | + [HtmlViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/htmlviewoptions/) クラス プロパティを使用すると、変換プロセスを制御できます。詳細については、[こちら](https://docs.groupdocs.com/viewer/net/rendering-to-html/)。 たとえば、すべての外部リソースを出力 HTML ファイルに埋め込み、出力ファイルを縮小して、印刷用に最適化することができます。 + {{< landing/code title="C#">}} + ```csharp {style=abap} + using GroupDocs.Viewer; + using GroupDocs.Viewer.Options; + + // ビューアをインスタンス化する + using (Viewer viewer = new Viewer("resume.docx")) + { + // 出力HTMLオプションを設定する + HtmlViewOptions options = HtmlViewOptions.ForEmbeddedResources(); + + // 埋め込みリソースを使用して DOCX を HTML にレンダリングします + viewer.View(options); + } + ``` + {{< /landing/code >}} + # code sample loop + - title: "PPTXをPDFにエクスポート" + content: | + [PdfViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/pdfviewoptions/) クラス インスタンスを作成し、それを [Viewer.View](https://reference.groupdocs.com/viewer/net/groupdocs.viewer/viewer/view/#view) メソッドを使用して、PowerPoint PPTX ファイルを PDF に変換します。 PdfViewOptions クラスのプロパティを使用すると、変換プロセスを制御できます。たとえば、出力 PDF ファイルを保護したり、ページの順序を変更したり、ドキュメントの画像の品質を指定したりできます。詳細については、[次のドキュメント セクション](https://docs.groupdocs.com/viewer/net/rendering-to-pdf/) を参照してください。 + {{< landing/code title="C#">}} + ```csharp {style=abap} + using GroupDocs.Viewer; + using GroupDocs.Viewer.Options; + + using (var viewer = new Viewer("presentation.pptx")) + { + // 出力 PDF オプションを設定する + var viewOptions = new PdfViewOptions("presentation.pdf"); + + // PPTXをPDFにエクスポート + viewer.View(viewOptions); + } + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "GroupDocs 製品のレビュー" +# description: "私たちの言葉をそのまま鵜呑みにしないでください。他の開発者の API についての意見をご覧ください" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "優れたサービスと優れた製品。これらは、GroupDocs.Viewer for .NET の実装プロセス中に非常に役に立ち、迅速に対応してくれましたが、あまりお勧めできません。" +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "GroupDocs.Viewer for .NET をプロジェクトに実装して使用した後、非常にうまく機能しているように見えます。多くのドキュメントを使用してテストしましたが、これまでのところ良好です。私が投げたものはすべてうまくレンダリングされ、PDF ビューアーや MS Word と同じくらい見栄えがよくなります。" +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- \ No newline at end of file diff --git a/content/viewer/net/_index.ko.md b/content/viewer/net/_index.ko.md new file mode 100644 index 00000000..74bd567b --- /dev/null +++ b/content/viewer/net/_index.ko.md @@ -0,0 +1,305 @@ +--- +############################# Static ########################## +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + +############################# Head ############################ +head_title: ".NET 문서 뷰어 API, PDF Word Excel 이미지 HTML 다이어그램 렌더링" +head_description: "C# ASP.NET 파일 뷰어 및 렌더링 API. .NET 앱에 PDF 뷰어, Word 뷰어, Excel 뷰어, 이미지 뷰어, HTML 뷰어, 이메일 뷰어 기능을 추가합니다." + +############################# Header ########################## +title: ".NET API를 사용하여
문서 렌더링 및 표시" +description: "다양한 구성 옵션을 사용하여 180개 이상의 문서 형식을 PDF, HTML 및 이미지로 렌더링할 수 있는 강력한 뷰어 API입니다." +words: + for: "for" + +actions: + main: "무료 NuGet 다운로드" + main_link: "https://www.nuget.org/packages/GroupDocs.Viewer" + alt: "라이선스" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/net" + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + +release: + title: "버전 {0} 출시됨" + notes: "새로운 소식 보기" + downloads: "다운로드" + link: "https://releases.groupdocs.com/viewer/net/release-notes/latest/" + +code: + title: "C#에서 PDF 파일 렌더링" + more: "더 많은 예시" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + install: "dotnet add package GroupDocs.Viewer" + content: | + ```csharp {style=abap} + // 소스 PDF 파일 로드 + using (var viewer = new Viewer("resume.pdf")) + { + // 출력 HTML 옵션 설정(페이지당 파일 1개) + var viewOptions = + HtmlViewOptions.ForEmbeddedResources("page{0}.html"); + + // 포함된 리소스를 사용하여 PDF를 HTML로 렌더링 + viewer.View(viewOptions); + } + ``` + +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer 개요" + description: ".NET 애플리케이션에서 문서, 슬라이드, 다이어그램 및 기타 다양한 문서 유형을 렌더링, 표시, 변환하는 API" + features: + # feature loop + - title: "효율적이고 안정적으로 문서 보기" + content: "GroupDocs.Viewer API를 사용하면 콘텐츠와 문서 구조 무결성을 유지하면서 유연하고 강력한 옵션을 사용하여 지원 가능한 모든 형식의 문서를 HTML, JPEG, PNG 및 PDF로 효율적으로 렌더링할 수 있습니다. GroupDocs.Viewer는 .NET Framework 4.6.2 및 .NET 6.0을 지원하며 Windows 및 Linux 플랫폼에서 작동합니다." + + # feature loop + - title: "가장 널리 사용되는 파일 및 문서 형식이 지원됩니다." + content: "우리는 Word, Excel, PDF, PowerPoint, OpenDocument 형식 제품군, 아카이브, 래스터 및 벡터 이미지, 전자책, 프로그래밍 언어 및 마크업, 암호화된 파일을 포함한 기타 다양한 파일 형식을 포함하는 180개 이상의 가장 널리 사용되는 파일 및 문서 형식의 렌더링을 지원합니다. 비밀번호로 보호된 파일." + + # feature loop + - title: "맞춤형 출력" + content: "GroupDocs.Viewer를 사용하면 문서를 렌더링할 수 있을 뿐만 아니라 문서의 어느 부분을 정확히 렌더링해야 하는지, 렌더링해야 하는지, 어떻게 렌더링해야 하는지 제어하고 렌더링된 출력에 다양한 변환을 적용할 수 있습니다." + + # feature loop + - title: "ASP.NET Core용 UI" + content: "우리는 몇 분 안에 프로젝트에 추가할 수 있는 ASP.NET Core용 오픈 소스 UI 패키지를 제공합니다. Viewer.UI 패키지에는 Angular 기반 웹 UI가 포함되어 있으며 유용한 API 및 데이터 저장소 공급자 세트를 제공합니다." + +############################# Platforms ############################ +platforms: + enable: true + title: "플랫폼 지원" + description: ".NET용 GroupDocs.Viewer는 다음 운영 체제, 프레임워크 및 패키지 관리자를 지원합니다." + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "VS Code" + image: "vs_code" + # platform loop + - title: "ReSharper" + image: "resharper" + # platform loop + - title: "macOS" + image: "finder" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "NuGet" + image: "nuget" + packages: + # packages loop + - title: "Windows 전용 패키지" + content: | + * .NET Framework 4.6.2+ 및 .NET 6.0 지원 + * 가장 포괄적인 파일 형식 지원 + * System.드로잉 및 System.드로잉.Common에 따라 달라집니다. + action: "NuGet 다운로드" + action_link: "https://www.nuget.org/packages/GroupDocs.Viewer" + # packages loop + - title: "크로스 플랫폼 패키지" + content: | + * .NET 6.0 이상 버전 지원 + * 제한된 파일 형식 지원 + * Windows, Linux 및 macOS에서 작동 + action: "NuGet 다운로드" + action_link: "https://www.nuget.org/packages/GroupDocs.Viewer.CrossPlatform" + +############################# File formats ############################ +formats: + enable: true + title: "지원되는 파일 형식" + description: | + .NET용 GroupDocs.Viewer는 다음 [파일 형식](https://docs.groupdocs.com/viewer/net/supported-document-formats/)을 사용한 작업을 지원합니다. + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument 및 텍스트 형식 + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX {{< landing/tooltip icon="windows" title="Windows 특정 패키지에서 지원됨" >}} + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE {{< landing/tooltip icon="windows" title="Windows 특정 패키지에서 지원됨" >}} + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### 이미지, 그래픽 및 다이어그램 + * **래스터 이미지:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB {{< landing/tooltip icon="windows" title="Windows 특정 패키지에서 지원됨" >}} + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### 다른 + * **편물:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM {{< landing/tooltip icon="windows" title="Windows 특정 패키지에서 지원됨" >}} + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **아카이브:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **다른:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "GroupDocs.Viewer 기능" + description: "PDF 및 Office 문서를 원활하게 렌더링, 표시 및 변환합니다." + + items: + # feature loop + - icon: "viewhtml" + title: "HTML로 문서 보기" + content: "모든 유형의 문서를 CSS 및 SVG를 사용하여 최신 웹 브라우저에서 표시할 수 있는 HTML 문서로 변환합니다." + + # feature loop + - icon: "rasterize" + title: "문서 래스터화" + content: "조정 가능한 이미지 형식과 압축 품질을 사용하여 지원 가능한 모든 문서 형식을 래스터 이미지로 래스터화합니다." + + # feature loop + - icon: "sourcecode" + title: "프로그래밍 코드 렌더링 및 강조 표시" + content: "구문을 분석하고 강조 표시하는 기능을 통해 널리 사용되는 모든 프로그래밍, 스크립팅 및 마크업 언어를 지원합니다." + + # feature loop + - icon: "convertpdf" + title: "PDF로 변환" + content: "지원되는 모든 형식의 문서는 조정 가능한 옵션을 사용하여 쉽게 변환하고 PDF로 저장할 수 있습니다." + + # feature loop + - icon: "transform" + title: "변환 적용" + content: "출력 문서는 렌더링 중에 변형될 수 있습니다. 페이지를 회전 및/또는 재배열할 수 있으며 텍스트 워터마크가 페이지 위에 배치될 수 있습니다." + + # feature loop + - icon: "adjustment" + title: "HTML 출력 조정" + content: "GroupDocs.Viewer에 의해 생성된 출력 HTML 문서는 매우 세밀하게 조정될 수 있습니다. 외부 또는 내장 리소스, 콜백 등과 함께 스트림이나 파일에 저장할 수 있습니다." + + # feature loop + - icon: "complex" + title: "복잡한 문서 구조 지원" + content: "GroupDocs.Viewer는 단일 문서뿐만 아니라 첨부 파일이 있는 이메일 메시지, 폴더 내에 내부 파일이 있는 ZIP 아카이브, 다중 페이지 TIFF 이미지 등과 같은 문서의 목록 또는 계층 구조를 내부적으로 포함하는 파일도 지원합니다." + + # feature loop + - icon: "optimization" + title: "최적화 옵션" + content: "GroupDocs.Viewer에는 캐시된 문서 버전을 사용하여 로딩 시간을 단축할 수 있는 조정 가능한 캐시 하위 시스템이 포함되어 있습니다. 또한 다양한 형식에 대한 다양한 옵션 세트를 사용하면 렌더링에서 문서의 불필요한 부분이나 측면(글꼴, 숨겨진 워크시트, 이메일 첨부 파일)을 제외하여 전반적인 성능을 최적화할 수 있습니다." + + # feature loop + - icon: "passwordprotected" + title: "비밀번호로 보호된 문서 지원" + content: "GroupDocs.Viewer를 사용하면 로딩 옵션에 비밀번호를 지정하여 PDF, 워드프로세싱, 스프레드시트, 프리젠테이션 등 다양한 유형의 암호화된 문서를 열 수 있습니다." + +############################# Code samples ############################ +code_samples: + enable: true + title: "코드 샘플" + description: ".NET 작업을 위한 일반적인 GroupDocs.Viewer의 일부 사용 사례" + items: + # code sample loop + - title: "DOCX를 HTML로 렌더링" + content: | + [HtmlViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/htmlviewoptions/) 클래스 속성을 사용하면 변환 프로세스를 제어할 수 있습니다. 자세한 내용은 [여기](https://docs.groupdocs.com/viewer/net/rendering-to-html/). 예를 들어 출력 HTML 파일에 모든 외부 리소스를 포함하고, 출력 파일을 축소하고, 인쇄용으로 최적화할 수 있습니다. + {{< landing/code title="C#">}} + ```csharp {style=abap} + using GroupDocs.Viewer; + using GroupDocs.Viewer.Options; + + // 뷰어 인스턴스화 + using (Viewer viewer = new Viewer("resume.docx")) + { + // 출력 HTML 옵션 설정 + HtmlViewOptions options = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스를 사용하여 DOCX를 HTML로 렌더링 + viewer.View(options); + } + ``` + {{< /landing/code >}} + # code sample loop + - title: "PPTX를 PDF로 내보내기" + content: | + [PdfViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/pdfviewoptions/) 클래스 인스턴스를 만들고 이를 [Viewer.View](https://reference.groupdocs.com/viewer/net/groupdocs.viewer/viewer/view/#view) 방법을 사용하여 PowerPoint PPTX 파일을 PDF로 변환합니다. PdfViewOptions 클래스 속성을 사용하면 변환 프로세스를 제어할 수 있습니다. 예를 들어, 출력 PDF 파일을 보호하고, 페이지 순서를 변경하고, 문서 이미지의 품질을 지정할 수 있습니다. 자세한 내용은 [다음 문서 섹션](https://docs.groupdocs.com/viewer/net/rendering-to-pdf/)을 참조하세요. + {{< landing/code title="C#">}} + ```csharp {style=abap} + using GroupDocs.Viewer; + using GroupDocs.Viewer.Options; + + using (var viewer = new Viewer("presentation.pptx")) + { + // 출력 PDF 옵션 설정 + var viewOptions = new PdfViewOptions("presentation.pdf"); + + // PPTX를 PDF로 내보내기 + viewer.View(viewOptions); + } + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "GroupDocs 제품 리뷰" +# description: "우리의 말만 받아들이지 마십시오. 다른 개발자가 우리 API에 대해 어떻게 말하는지 확인하세요." + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "우수한 서비스와 우수한 제품. .NET용 GroupDocs.Viewer 구현 프로세스 동안 매우 도움이 되고 응답이 빨랐기 때문에 충분히 추천할 수는 없습니다." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "프로젝트에서 .NET용 GroupDocs.Viewer를 구현하고 사용한 후에는 매우 잘 작동하는 것으로 보입니다. 나는 많은 문서를 가지고 테스트해 보았는데 지금까지는 아주 좋았다. 내가 던진 모든 것은 PDF 뷰어나 MS Word에서와 마찬가지로 멋지게 렌더링되고 보기에도 좋습니다." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- \ No newline at end of file diff --git a/content/viewer/net/_index.pt.md b/content/viewer/net/_index.pt.md new file mode 100644 index 00000000..837be0b4 --- /dev/null +++ b/content/viewer/net/_index.pt.md @@ -0,0 +1,305 @@ +--- +############################# Static ########################## +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + +############################# Head ############################ +head_title: "API do visualizador de documentos .NET, renderização de diagrama HTML de imagem em PDF Word Excel" +head_description: "Visualizador de arquivos C# ASP.NET e API de renderização. Adicione recursos de visualizador de PDF, visualizador de Word, visualizador de Excel, visualizador de imagens, visualizador de HTML e visualizador de e-mail em aplicativos .NET." + +############################# Header ########################## +title: "Renderizar e exibir documentos
usando a API .NET" +description: "API de visualizador poderosa para renderizar mais de 180 formatos de documentos em PDF, HTML e imagens com opções versáteis de configuração." +words: + for: "for" + +actions: + main: "Download grátis do NuGet" + main_link: "https://www.nuget.org/packages/GroupDocs.Viewer" + alt: "Licenciamento" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/net" + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + +release: + title: "Versão {0} lançada" + notes: "Veja o que é novo" + downloads: "Transferências" + link: "https://releases.groupdocs.com/viewer/net/release-notes/latest/" + +code: + title: "Renderizar arquivos PDF em C#" + more: "Mais exemplos" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + install: "dotnet add package GroupDocs.Viewer" + content: | + ```csharp {style=abap} + // Carregue o arquivo PDF de origem + using (var viewer = new Viewer("resume.pdf")) + { + // Defina opções de saída HTML, um arquivo por página + var viewOptions = + HtmlViewOptions.ForEmbeddedResources("page{0}.html"); + + // Renderize PDF em HTML com recursos incorporados + viewer.View(viewOptions); + } + ``` + +############################# Overview ############################ +overview: + enable: true + title: "Visão geral do GroupDocs.Viewer" + description: "API para renderizar, exibir, converter documentos, slides, diagramas e muitos outros tipos de documentos em aplicativos .NET" + features: + # feature loop + - title: "Visualize documentos de forma eficiente e confiável" + content: "Com a API GroupDocs.Viewer, você pode renderizar com eficiência documentos de qualquer formato compatível para HTML, JPEG, PNG e PDF com opções flexíveis e poderosas, mantendo a integridade do conteúdo e da estrutura do documento. GroupDocs.Viewer suporta .NET Framework 4.6.2 e .NET 6.0, funciona em plataformas Windows e Linux." + + # feature loop + - title: "Os formatos de arquivos e documentos mais populares são suportados" + content: "Oferecemos suporte à renderização dos 180 formatos de arquivos e documentos mais populares, que incluem Word, Excel, PDF, PowerPoint, família de formatos OpenDocument, arquivos, imagens raster e vetoriais, e-books, linguagens de programação e marcações e muitos outros tipos de arquivos, incluindo arquivos criptografados. arquivos com proteção por senha." + + # feature loop + - title: "Saída personalizável" + content: "GroupDocs.Viewer permite não apenas renderizar o documento, mas também controlar como exatamente, quais partes do documento devem ser renderizadas ou agora, como devem ser renderizadas e aplicar diferentes transformações à saída renderizada." + + # feature loop + - title: "IU para ASP.NET Core" + content: "Fornecemos um pacote de UI de código aberto para ASP.NET Core que pode ser adicionado ao seu projeto em alguns minutos. O pacote Viewer.UI contém uma interface da web baseada em Angular e oferece um conjunto de APIs úteis e provedores de armazenamento de dados." + +############################# Platforms ############################ +platforms: + enable: true + title: "Suporte de plataformas" + description: "GroupDocs.Viewer for .NET suporta os seguintes sistemas operacionais, estruturas e gerenciadores de pacotes" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "VS Code" + image: "vs_code" + # platform loop + - title: "ReSharper" + image: "resharper" + # platform loop + - title: "macOS" + image: "finder" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "NuGet" + image: "nuget" + packages: + # packages loop + - title: "Pacote específico do Windows" + content: | + * Suporta .NET Framework 4.6.2+ e .NET 6.0 + * O suporte mais abrangente para formatos de arquivo + * Depende de System.Drawing e System.Drawing.Common + action: "Baixar NuGet" + action_link: "https://www.nuget.org/packages/GroupDocs.Viewer" + # packages loop + - title: "Pacote multiplataforma" + content: | + * Suporta .NET 6.0 e versões superiores + * Suporte limitado a formatos de arquivo + * Funciona em Windows, Linux e macOS + action: "Baixar NuGet" + action_link: "https://www.nuget.org/packages/GroupDocs.Viewer.CrossPlatform" + +############################# File formats ############################ +formats: + enable: true + title: "Formatos de arquivo suportados" + description: | + GroupDocs.Viewer for .NET oferece suporte a operações com os seguintes [formatos de arquivo](https://docs.groupdocs.com/viewer/net/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument e formatos de texto + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX {{< landing/tooltip icon="windows" title="Suportado por pacote específico do Windows" >}} + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE {{< landing/tooltip icon="windows" title="Suportado por pacote específico do Windows" >}} + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### Imagens, gráficos e diagramas + * **Imagens rasterizadas:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB {{< landing/tooltip icon="windows" title="Suportado por pacote específico do Windows" >}} + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### Outro + * **Rede:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM {{< landing/tooltip icon="windows" title="Suportado por pacote específico do Windows" >}} + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **Arquivos:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **Outro:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "Recursos do GroupDocs.Viewer" + description: "Renderize, exiba e converta perfeitamente documentos PDF e Office" + + items: + # feature loop + - icon: "viewhtml" + title: "Ver documentos em HTML" + content: "Converta documentos de qualquer tipo em um documento HTML com CSS e SVG, que pode ser exibido em qualquer navegador moderno." + + # feature loop + - icon: "rasterize" + title: "Rasterizar documentos" + content: "Rasterize qualquer formato de documento compatível para a imagem rasterizada, com formato de imagem e qualidade de compactação ajustáveis." + + # feature loop + - icon: "sourcecode" + title: "Renderizar e destacar códigos de programação" + content: "Suporte para todas as linguagens populares de programação, script e marcação, com capacidade de analisar e destacar sua sintaxe." + + # feature loop + - icon: "convertpdf" + title: "Converter para PDF" + content: "Documentos de qualquer formato compatível podem ser facilmente convertidos e salvos em PDF com opções ajustáveis." + + # feature loop + - icon: "transform" + title: "Aplicar transformações" + content: "O documento de saída pode ser transformado durante a renderização - as páginas podem ser giradas e/ou reorganizadas e uma marca d’água de texto pode ser colocada sobre elas." + + # feature loop + - icon: "adjustment" + title: "Ajuste de saída HTML" + content: "Os documentos HTML de saída, gerados pelo GroupDocs.Viewer, podem ser ajustados com muita precisão: é permitido salvar no fluxo ou arquivo, com recursos externos ou incorporados, retornos de chamada e assim por diante." + + # feature loop + - icon: "complex" + title: "Suporte de estruturas de documentos complexas" + content: "GroupDocs.Viewer suporta não apenas documentos únicos, mas também arquivos, que contêm internamente uma lista ou estrutura hierárquica de documentos, como mensagens de e-mail com anexos, arquivos ZIP com arquivos internos dentro de pastas, imagens TIFF de várias páginas e assim por diante." + + # feature loop + - icon: "optimization" + title: "Opções de otimização" + content: "GroupDocs.Viewer contém um subsistema de cache ajustável, que pode acelerar o tempo de carregamento usando as versões em cache dos documentos. Além disso, um conjunto de diferentes opções para diferentes formatos permite excluir algumas partes ou aspectos desnecessários dos documentos da renderização (fontes, planilhas ocultas, anexos de e-mail) para otimizar o desempenho geral." + + # feature loop + - icon: "passwordprotected" + title: "Suporte de documentos protegidos por senha" + content: "GroupDocs.Viewer permite abrir documentos criptografados de diversos tipos: PDF, WordProcessing, Planilha, Apresentação e outros, especificando uma senha nas opções de carregamento." + +############################# Code samples ############################ +code_samples: + enable: true + title: "Amostras de código" + description: "Alguns casos de uso de operações típicas do GroupDocs.Viewer para .NET" + items: + # code sample loop + - title: "Renderizar DOCX para HTML" + content: | + As propriedades da classe [HtmlViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/htmlviewoptions/) permitem que você controle o processo de conversão, mais sobre isso [aqui](https://docs.groupdocs.com/viewer/net/rendering-to-html/). Por exemplo, você pode incorporar todos os recursos externos no arquivo HTML de saída, reduzir o arquivo de saída e otimizá-lo para impressão. + {{< landing/code title="C#">}} + ```csharp {style=abap} + using GroupDocs.Viewer; + using GroupDocs.Viewer.Options; + + // Instanciar visualizador + using (Viewer viewer = new Viewer("resume.docx")) + { + // Definir opções de HTML de saída + HtmlViewOptions options = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize DOCX para HTML com recursos incorporados + viewer.View(options); + } + ``` + {{< /landing/code >}} + # code sample loop + - title: "Exportar PPTX para PDF" + content: | + Crie uma instância de classe [PdfViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/pdfviewoptions/) e passe-a para o [Viewer.View](https://reference.groupdocs.com/viewer/net/groupdocs.viewer/viewer/view/#view) para converter um arquivo PowerPoint PPTX em PDF. As propriedades da classe PdfViewOptions permitem controlar o processo de conversão. Por exemplo, você pode proteger o arquivo PDF de saída, reordenar suas páginas e especificar a qualidade das imagens do documento. Consulte a [seção de documentação a seguir](https://docs.groupdocs.com/viewer/net/rendering-to-pdf/) para obter detalhes. + {{< landing/code title="C#">}} + ```csharp {style=abap} + using GroupDocs.Viewer; + using GroupDocs.Viewer.Options; + + using (var viewer = new Viewer("presentation.pptx")) + { + // Definir opções de saída de PDF + var viewOptions = new PdfViewOptions("presentation.pdf"); + + // Exportar PPTX para PDF + viewer.View(viewOptions); + } + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "Avaliações de produtos GroupDocs" +# description: "Não acredite apenas na nossa palavra. Veja o que outros desenvolvedores dizem sobre nossas APIs" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Excelente atendimento e excelentes produtos. Eles foram extremamente úteis e receptivos durante o processo de implementação do GroupDocs.Viewer para .NET, não posso recomendá-los o suficiente." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Depois de implementar e usar o GroupDocs.Viewer for .NET no projeto, parece estar funcionando muito bem. Eu testei com muitos documentos e até agora tudo bem. Tudo o que joguei nele é renderizado perfeitamente e parece tão bom quanto em um visualizador de PDF ou MS Word." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- \ No newline at end of file diff --git a/content/viewer/net/_index.ru.md b/content/viewer/net/_index.ru.md new file mode 100644 index 00000000..d111206b --- /dev/null +++ b/content/viewer/net/_index.ru.md @@ -0,0 +1,305 @@ +--- +############################# Static ########################## +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + +############################# Head ############################ +head_title: "API просмотра документов .NET, рендеринг PDF-изображения Word Excel в HTML-диаграмме" +head_description: "Средство просмотра файлов C# ASP.NET и API рендеринга. Добавьте средства просмотра PDF-файлов, средства просмотра Word, средства просмотра Excel, средства просмотра изображений, средства просмотра HTML и функции просмотра электронной почты в приложениях .NET." + +############################# Header ########################## +title: "Рендеринг и отображение документов
с использованием .NET API" +description: "Мощный API-интерфейс Viewer для преобразования более 180 форматов документов в PDF, HTML и изображения с универсальными параметрами конфигурации." +words: + for: "for" + +actions: + main: "Бесплатная загрузка NuGet" + main_link: "https://www.nuget.org/packages/GroupDocs.Viewer" + alt: "Лицензирование" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/net" + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + +release: + title: "Версия {0} выпущена" + notes: "Что нового" + downloads: "Загрузки" + link: "https://releases.groupdocs.com/viewer/net/release-notes/latest/" + +code: + title: "Рендеринг PDF-файлов на C#" + more: "Больше примеров" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + install: "dotnet add package GroupDocs.Viewer" + content: | + ```csharp {style=abap} + // Загрузите исходный PDF-файл + using (var viewer = new Viewer("resume.pdf")) + { + // Установите параметры вывода HTML + var viewOptions = + HtmlViewOptions.ForEmbeddedResources("page{0}.html"); + + // Преобразование PDF в HTML + viewer.View(viewOptions); + } + ``` + +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer: краткий обзор" + description: "API для рендеринга, отображения и преобразования документов, слайдов, диаграмм и многих других типов документов в приложениях .NET." + features: + # feature loop + - title: "Просматривайте документы эффективно и надежно" + content: "С помощью API GroupDocs.Viewer вы можете эффективно отображать документы любых поддерживаемых форматов в HTML, JPEG, PNG и PDF с помощью гибких и мощных функций, сохраняя при этом целостность содержимого и структуры документа. GroupDocs.Viewer поддерживает .NET Framework 4.6.2 и .NET 6.0, работает на платформах Windows и Linux." + + # feature loop + - title: "Поддерживаются большинство популярных форматов файлов и документов." + content: "Мы поддерживаем рендеринг более 180 наиболее популярных форматов файлов и документов, включая Word, Excel, PDF, PowerPoint, семейство форматов OpenDocument, архивы, растровые и векторные изображения, электронные книги, языки программирования и разметки, а также многие другие типы файлов, включая зашифрованные. файлы с защитой паролем." + + # feature loop + - title: "Настраиваемый вывод" + content: "GroupDocs.Viewer позволяет не только визуализировать документ, но и контролировать, как именно, какие части документа должны быть визуализированы или сейчас, как они должны отображаться, а также применять различные преобразования к визуализированному выводу." + + # feature loop + - title: "Пользовательский интерфейс для ASP.NET Core" + content: "Мы предоставляем пакет пользовательского интерфейса с открытым исходным кодом для ASP.NET Core, который можно добавить в ваш проект за пару минут. Пакет Viewer.UI содержит веб-интерфейс на основе Angular и предоставляет набор полезных API и поставщиков хранилищ данных." + +############################# Platforms ############################ +platforms: + enable: true + title: "Поддержка платформ" + description: "GroupDocs.Viewer для .NET поддерживает следующие операционные системы, платформы и менеджеры пакетов." + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "VS Code" + image: "vs_code" + # platform loop + - title: "ReSharper" + image: "resharper" + # platform loop + - title: "macOS" + image: "finder" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "NuGet" + image: "nuget" + packages: + # packages loop + - title: "Пакет для Windows" + content: | + * Поддерживает .NET Framework 4.6.2+ и .NET 6.0. + * Наиболее полная поддержка форматов файлов + * Зависит от System.Drawing и System.Drawing.Common + action: "Загрузка NuGet" + action_link: "https://www.nuget.org/packages/GroupDocs.Viewer" + # packages loop + - title: "Кроссплатформенный пакет" + content: | + * Поддерживает .NET 6.0 и более поздние версии. + * Ограниченная поддержка форматов файлов + * Работает на Windows, Linux и macOS + action: "Загрузка NuGet" + action_link: "https://www.nuget.org/packages/GroupDocs.Viewer.CrossPlatform" + +############################# File formats ############################ +formats: + enable: true + title: "Поддерживаемые форматы файлов" + description: | + GroupDocs.Viewer для .NET поддерживает операции со следующими [форматами файлов](https://docs.groupdocs.com/viewer/net/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument и текстовые форматы + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX {{< landing/tooltip icon="windows" title="Поддерживается пакетом, специфичным для Windows." >}} + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE {{< landing/tooltip icon="windows" title="Поддерживается пакетом, специфичным для Windows." >}} + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### Изображения, графика и диаграммы + * **Растровые изображения:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB {{< landing/tooltip icon="windows" title="Поддерживается пакетом, специфичным для Windows." >}} + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### Другой + * **Интернет:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM {{< landing/tooltip icon="windows" title="Поддерживается пакетом, специфичным для Windows." >}} + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **Архивы:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **Другой:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "Возможности GroupDocs.Viewer" + description: "Легко визуализируйте, отображайте и конвертируйте документы PDF и Office." + + items: + # feature loop + - icon: "viewhtml" + title: "Просмотр документов в формате HTML" + content: "Конвертируйте документ любого типа в документ HTML с помощью CSS и SVG, который можно отобразить в любом современном веб-браузере." + + # feature loop + - icon: "rasterize" + title: "Растеризация документов" + content: "Преобразуйте любой поддерживаемый формат документа в растровое изображение с настраиваемым форматом изображения и качеством сжатия." + + # feature loop + - icon: "sourcecode" + title: "Рендеринг и выделение программных кодов" + content: "Поддержка всех популярных языков программирования, сценариев и разметки с возможностью анализа и выделения их синтаксиса." + + # feature loop + - icon: "convertpdf" + title: "Конвертировать в PDF" + content: "Документ любого поддерживаемого формата можно легко преобразовать и сохранить в PDF с настраиваемыми параметрами." + + # feature loop + - icon: "transform" + title: "Применить преобразования" + content: "Выходной документ можно трансформировать во время рендеринга — страницы можно поворачивать и/или переставлять, а поверх них можно размещать текстовый водяной знак." + + # feature loop + - icon: "adjustment" + title: "Настройка вывода HTML" + content: "Выходные HTML-документы, генерируемые GroupDocs.Viewer, можно очень тонко настроить: разрешено сохранение в поток или файл, с внешними или встроенными ресурсами, обратными вызовами и так далее." + + # feature loop + - icon: "complex" + title: "Поддержка сложных структур документов" + content: "GroupDocs.Viewer поддерживает не только отдельные документы, но и файлы, которые внутри содержат список или иерархическую структуру документов, например, сообщения электронной почты с вложениями, ZIP-архивы с внутренними файлами в папках, многостраничные изображения TIFF и т. д." + + # feature loop + - icon: "optimization" + title: "Варианты оптимизации" + content: "GroupDocs.Viewer содержит настраиваемую подсистему кэширования, которая может сократить время загрузки за счет использования кэшированных версий документов. Также набор различных опций для разных форматов позволяет исключить из рендеринга некоторые ненужные части или аспекты документов (шрифты, скрытые листы, вложения электронной почты) для оптимизации общей производительности." + + # feature loop + - icon: "passwordprotected" + title: "Поддержка документов, защищенных паролем" + content: "GroupDocs.Viewer позволяет открывать зашифрованные документы разных типов: PDF, WordProcessing, Spreadsheet, Presentation и другие, указав пароль в параметрах загрузки." + +############################# Code samples ############################ +code_samples: + enable: true + title: "Примеры кода" + description: "Некоторые варианты использования типичных операций GroupDocs.Viewer для .NET" + items: + # code sample loop + - title: "Преобразование DOCX в HTML" + content: | + Свойства класса [HtmlViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/htmlviewoptions/) позволяют вам управлять процессом преобразования, подробнее об этом [здесь](https://docs.groupdocs.com/viewer/net/rendering-to-html/). Например, вы можете встроить все внешние ресурсы в выходной HTML-файл, минимизировать выходной файл и оптимизировать его для печати. + {{< landing/code title="C#">}} + ```csharp {style=abap} + using GroupDocs.Viewer; + using GroupDocs.Viewer.Options; + + // Создать экземпляр просмотра + using (Viewer viewer = new Viewer("resume.docx")) + { + // Установите параметры вывода HTML + HtmlViewOptions options = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразование DOCX в HTML со встроенными ресурсами + viewer.View(options); + } + ``` + {{< /landing/code >}} + # code sample loop + - title: "Экспорт PPTX в PDF" + content: | + Создайте экземпляр класса [PdfViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/pdfviewoptions/) и передайте его в [Viewer.View](https://reference.groupdocs.com/viewer/net/groupdocs.viewer/viewer/view/#view) для преобразования файла PowerPoint PPTX в PDF. Свойства класса PdfViewOptions позволяют управлять процессом преобразования. Например, вы можете защитить выходной PDF-файл, изменить порядок его страниц и указать качество изображений документа. Подробности см. в [следующем разделе документации](https://docs.groupdocs.com/viewer/net/rendering-to-pdf/). + {{< landing/code title="C#">}} + ```csharp {style=abap} + using GroupDocs.Viewer; + using GroupDocs.Viewer.Options; + + using (var viewer = new Viewer("presentation.pptx")) + { + // Установите параметры вывода PDF + var viewOptions = new PdfViewOptions("presentation.pdf"); + + // Экспорт PPTX в PDF + viewer.View(viewOptions); + } + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "Обзоры продуктов GroupDocs" +# description: "Не верьте нам на слово. Посмотрите, что другие разработчики говорят о наших API" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Отличный сервис и отличная продукция. Они были чрезвычайно полезны и отзывчивы в процессе внедрения GroupDocs.Viewer для .NET, поэтому не могу не рекомендовать их достаточно высоко." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "После реализации и использования GroupDocs.Viewer для .NET в проекте он работает очень хорошо. Я проверил множество документов и пока все хорошо. Все, что я в него добавил, прекрасно визуализируется и выглядит так же хорошо, как в программе просмотра PDF или MS Word." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- \ No newline at end of file diff --git a/content/viewer/net/_index.th.md b/content/viewer/net/_index.th.md new file mode 100644 index 00000000..da11d918 --- /dev/null +++ b/content/viewer/net/_index.th.md @@ -0,0 +1,305 @@ +--- +############################# Static ########################## +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + +############################# Head ############################ +head_title: "API โปรแกรมดูเอกสาร .NET, เรนเดอร์ PDF Word Excel Image HTML Diagram" +head_description: "โปรแกรมดูไฟล์ C# ASP.NET และ API การเรนเดอร์ เพิ่มโปรแกรมดู PDF, โปรแกรมดู Word, โปรแกรมดู Excel, โปรแกรมดูรูปภาพ, โปรแกรมดู HTML, คุณสมบัติโปรแกรมดูอีเมลในแอป .NET" + +############################# Header ########################## +title: "เรนเดอร์และแสดงเอกสาร
โดยใช้ .NET API" +description: "Viewer API อันทรงพลังเพื่อเรนเดอร์รูปแบบเอกสารมากกว่า 180 รูปแบบเป็น PDF, HTML และรูปภาพพร้อมตัวเลือกการกำหนดค่าที่หลากหลาย" +words: + for: "for" + +actions: + main: "ดาวน์โหลด NuGet ฟรี" + main_link: "https://www.nuget.org/packages/GroupDocs.Viewer" + alt: "การออกใบอนุญาต" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/net" + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + +release: + title: "เวอร์ชัน {0} เปิดตัวแล้ว" + notes: "ดูว่ามีอะไรใหม่" + downloads: "ดาวน์โหลด" + link: "https://releases.groupdocs.com/viewer/net/release-notes/latest/" + +code: + title: "เรนเดอร์ไฟล์ PDF ใน C#" + more: "ตัวอย่างเพิ่มเติม" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + install: "dotnet add package GroupDocs.Viewer" + content: | + ```csharp {style=abap} + // โหลดไฟล์ PDF ต้นฉบับ + using (var viewer = new Viewer("resume.pdf")) + { + // ตั้งค่าตัวเลือก HTML เอาต์พุต หนึ่งไฟล์ต่อหน้า + var viewOptions = + HtmlViewOptions.ForEmbeddedResources("page{0}.html"); + + // เรนเดอร์ PDF เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + ``` + +############################# Overview ############################ +overview: + enable: true + title: "ภาพรวม GroupDocs.Viewer" + description: "API เพื่อเรนเดอร์ แสดง แปลงเอกสาร สไลด์ ไดอะแกรม และเอกสารประเภทอื่นๆ อีกมากมายในแอปพลิเคชัน .NET" + features: + # feature loop + - title: "ดูเอกสารอย่างมีประสิทธิภาพและเชื่อถือได้" + content: "ด้วย GroupDocs.Viewer API คุณสามารถเรนเดอร์เอกสารในรูปแบบที่รองรับเป็น HTML, JPEG, PNG และ PDF ได้อย่างมีประสิทธิภาพด้วยตัวเลือกที่ยืดหยุ่นและมีประสิทธิภาพ ในขณะที่ยังคงรักษาความสมบูรณ์ของเนื้อหาและโครงสร้างเอกสารไว้ GroupDocs.Viewer รองรับ .NET Framework 4.6.2 และ .NET 6.0 ซึ่งทำงานบนแพลตฟอร์ม Windows และ Linux" + + # feature loop + - title: "รองรับรูปแบบไฟล์และเอกสารยอดนิยมส่วนใหญ่" + content: "เรารองรับการเรนเดอร์ไฟล์และรูปแบบเอกสารยอดนิยมกว่า 180 รูปแบบ ซึ่งรวมถึง Word, Excel, PDF, PowerPoint, ตระกูลรูปแบบ OpenDocument, ไฟล์เก็บถาวร, ภาพแรสเตอร์และเวกเตอร์, e-Books, ภาษาการเขียนโปรแกรมและมาร์กอัป และประเภทไฟล์อื่น ๆ อีกมากมาย รวมถึงไฟล์ที่เข้ารหัส ไฟล์ที่มีการป้องกันด้วยรหัสผ่าน" + + # feature loop + - title: "เอาต์พุตที่ปรับแต่งได้" + content: "GroupDocs.Viewer ไม่เพียงแต่ช่วยให้เรนเดอร์เอกสารเท่านั้น แต่ยังควบคุมวิธีการอย่างชัดเจน ส่วนใดของเอกสารที่ควรจะถูกเรนเดอร์หรือตอนนี้ วิธีเรนเดอร์เอกสาร และนำการแปลงต่างๆ ไปใช้กับเอาท์พุตที่ถูกเรนเดอร์" + + # feature loop + - title: "UI สำหรับ ASP.NET Core" + content: "เรามีแพ็คเกจ UI แบบโอเพ่นซอร์สสำหรับ ASP.NET Core ที่สามารถเพิ่มลงในโปรเจ็กต์ของคุณได้ภายในไม่กี่นาที แพ็คเกจ Viewer.UI ประกอบด้วย web-UI ที่ใช้ Angular และมอบชุด API ที่เป็นประโยชน์และผู้ให้บริการจัดเก็บข้อมูล" + +############################# Platforms ############################ +platforms: + enable: true + title: "รองรับแพลตฟอร์ม" + description: "GroupDocs.Viewer สำหรับ .NET รองรับระบบปฏิบัติการ เฟรมเวิร์ก และตัวจัดการแพ็คเกจต่อไปนี้" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "VS Code" + image: "vs_code" + # platform loop + - title: "ReSharper" + image: "resharper" + # platform loop + - title: "macOS" + image: "finder" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "NuGet" + image: "nuget" + packages: + # packages loop + - title: "แพ็คเกจเฉพาะของ Windows" + content: | + * รองรับ .NET Framework 4.6.2+ และ .NET 6.0 + * รองรับรูปแบบไฟล์ที่ครอบคลุมที่สุด + * ขึ้นอยู่กับ System. Drawing และ System. Drawing.Common + action: "ดาวน์โหลด NuGet" + action_link: "https://www.nuget.org/packages/GroupDocs.Viewer" + # packages loop + - title: "แพ็คเกจข้ามแพลตฟอร์ม" + content: | + * รองรับ .NET 6.0 และเวอร์ชันที่สูงกว่า + * รองรับรูปแบบไฟล์ที่จำกัด + * ทำงานบน Windows, Linux และ macOS + action: "ดาวน์โหลด NuGet" + action_link: "https://www.nuget.org/packages/GroupDocs.Viewer.CrossPlatform" + +############################# File formats ############################ +formats: + enable: true + title: "รูปแบบไฟล์ที่รองรับ" + description: | + GroupDocs.Viewer สำหรับ .NET รองรับการทำงานกับ [รูปแบบไฟล์](https://docs.groupdocs.com/viewer/net/supported-document-formats/) ต่อไปนี้ + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument และรูปแบบข้อความ + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX {{< landing/tooltip icon="windows" title="รองรับแพ็คเกจเฉพาะ Windows" >}} + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE {{< landing/tooltip icon="windows" title="รองรับแพ็คเกจเฉพาะ Windows" >}} + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### รูปภาพ กราฟิก และไดอะแกรม + * **ภาพแรสเตอร์:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB {{< landing/tooltip icon="windows" title="รองรับแพ็คเกจเฉพาะ Windows" >}} + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### อื่น + * **เว็บ:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM {{< landing/tooltip icon="windows" title="รองรับแพ็คเกจเฉพาะ Windows" >}} + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **หอจดหมายเหตุ:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **อื่น:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "คุณสมบัติ GroupDocs.Viewer" + description: "เรนเดอร์ แสดง และแปลงเอกสาร PDF และ Office ได้อย่างราบรื่น" + + items: + # feature loop + - icon: "viewhtml" + title: "ดูเอกสารในรูปแบบ HTML" + content: "แปลงเอกสารทุกประเภทให้เป็นเอกสาร HTML ด้วย CSS และ SVG ซึ่งสามารถแสดงในเว็บเบราว์เซอร์สมัยใหม่" + + # feature loop + - icon: "rasterize" + title: "แปลงเอกสารเป็นแรสเตอร์" + content: "แรสเตอร์รูปแบบเอกสารที่รองรับให้เป็นภาพแรสเตอร์ พร้อมรูปแบบภาพที่ปรับได้และคุณภาพการบีบอัด" + + # feature loop + - icon: "sourcecode" + title: "เรนเดอร์และไฮไลต์โค้ดโปรแกรม" + content: "รองรับการเขียนโปรแกรม สคริปต์ และภาษามาร์กอัปยอดนิยมทั้งหมด พร้อมความสามารถในการแยกวิเคราะห์และเน้นไวยากรณ์ของภาษาเหล่านั้น" + + # feature loop + - icon: "convertpdf" + title: "แปลงเป็น PDF" + content: "เอกสารในรูปแบบที่รองรับสามารถแปลงและบันทึกเป็น PDF ได้อย่างง่ายดายพร้อมตัวเลือกที่ปรับได้" + + # feature loop + - icon: "transform" + title: "ใช้การแปลง" + content: "เอกสารเอาต์พุตสามารถแปลงได้ในระหว่างการเรนเดอร์ - สามารถหมุนหน้าและ/หรือจัดเรียงหน้าใหม่ได้ และอาจวางลายน้ำข้อความไว้บนหน้าเหล่านั้นได้" + + # feature loop + - icon: "adjustment" + title: "การปรับเอาต์พุต HTML" + content: "เอกสาร HTML เอาท์พุตที่สร้างโดย GroupDocs.Viewer สามารถปรับแต่งได้อย่างละเอียด: อนุญาตให้บันทึกลงในสตรีมหรือไฟล์ด้วยทรัพยากรภายนอกหรือแบบฝัง การเรียกกลับ และอื่นๆ" + + # feature loop + - icon: "complex" + title: "รองรับโครงสร้างเอกสารที่ซับซ้อน" + content: "GroupDocs.Viewer รองรับไม่เพียงแต่เอกสารเดียวเท่านั้น แต่ยังรวมถึงไฟล์ต่างๆ ที่ภายในประกอบด้วยรายการหรือโครงสร้างลำดับชั้นของเอกสาร เช่น ข้อความอีเมลพร้อมไฟล์แนบ ไฟล์ ZIP ที่มีไฟล์ภายในภายในโฟลเดอร์ รูปภาพ TIFF แบบหลายหน้า และอื่นๆ" + + # feature loop + - icon: "optimization" + title: "ตัวเลือกการเพิ่มประสิทธิภาพ" + content: "GroupDocs.Viewer มีระบบย่อยแคชที่ปรับได้ ซึ่งสามารถเร่งเวลาการโหลดให้เร็วขึ้นได้โดยใช้เอกสารเวอร์ชันแคช นอกจากนี้ ชุดของตัวเลือกที่แตกต่างกันสำหรับรูปแบบที่แตกต่างกันยังช่วยแยกส่วนหรือลักษณะที่ไม่จำเป็นของเอกสารออกจากการเรนเดอร์ (แบบอักษร แผ่นงานที่ซ่อน ไฟล์แนบในอีเมล) เพื่อเพิ่มประสิทธิภาพโดยรวม" + + # feature loop + - icon: "passwordprotected" + title: "รองรับเอกสารที่มีการป้องกันด้วยรหัสผ่าน" + content: "GroupDocs.Viewer อนุญาตให้เปิดเอกสารที่เข้ารหัสประเภทต่างๆ: PDF, WordProcessing, Spreadsheet, Presentation และอื่นๆ โดยระบุรหัสผ่านในตัวเลือกการโหลด" + +############################# Code samples ############################ +code_samples: + enable: true + title: "ตัวอย่างโค้ด" + description: "กรณีการใช้งานบางอย่างของ GroupDocs.Viewer ทั่วไปสำหรับการดำเนินการ .NET" + items: + # code sample loop + - title: "เรนเดอร์ DOCX เป็น HTML" + content: | + คุณสมบัติคลาส [HtmlViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/htmlviewoptions/) ช่วยให้คุณควบคุมกระบวนการแปลงได้ ดูข้อมูลเพิ่มเติมเกี่ยวกับ [ที่นี่](https://docs.groupdocs.com/viewer/net/rendering-to-html/) ตัวอย่างเช่น คุณสามารถฝังทรัพยากรภายนอกทั้งหมดในไฟล์ HTML เอาต์พุต ย่อขนาดไฟล์เอาต์พุต และปรับให้เหมาะสมสำหรับการพิมพ์ + {{< landing/code title="C#">}} + ```csharp {style=abap} + using GroupDocs.Viewer; + using GroupDocs.Viewer.Options; + + // สร้างอินสแตนซ์ของผู้ดู + using (Viewer viewer = new Viewer("resume.docx")) + { + // ตั้งค่าตัวเลือก HTML เอาท์พุต + HtmlViewOptions options = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ DOCX เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(options); + } + ``` + {{< /landing/code >}} + # code sample loop + - title: "ส่งออก PPTX เป็น PDF" + content: | + สร้างอินสแตนซ์คลาส [PdfViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/pdfviewoptions/) แล้วส่งต่อไปยังอินสแตนซ์คลาส [Viewer.View](https://reference.groupdocs.com/viewer/net/groupdocs.viewer/viewer/view/#view) เพื่อแปลงไฟล์ PowerPoint PPTX เป็น PDF คุณสมบัติคลาส PdfViewOptions ช่วยให้คุณสามารถควบคุมกระบวนการแปลงได้ ตัวอย่างเช่น คุณสามารถป้องกันไฟล์ PDF เอาต์พุต เรียงลำดับหน้าใหม่ และระบุคุณภาพของรูปภาพเอกสารได้ โปรดดูรายละเอียดใน[ส่วนเอกสารประกอบต่อไปนี้](https://docs.groupdocs.com/viewer/net/rendering-to-pdf/) + {{< landing/code title="C#">}} + ```csharp {style=abap} + using GroupDocs.Viewer; + using GroupDocs.Viewer.Options; + + using (var viewer = new Viewer("presentation.pptx")) + { + // ตั้งค่าตัวเลือกเอาต์พุต PDF + var viewOptions = new PdfViewOptions("presentation.pdf"); + + // ส่งออก PPTX เป็น PDF + viewer.View(viewOptions); + } + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "บทวิจารณ์ผลิตภัณฑ์ GroupDocs" +# description: "อย่าเพิ่งเชื่อคำพูดของเรา ดูว่านักพัฒนารายอื่นพูดถึง API ของเราอย่างไร" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "บริการที่เป็นเลิศและผลิตภัณฑ์ที่เป็นเลิศ พวกเขามีประโยชน์และตอบสนองอย่างมากในระหว่างกระบวนการใช้งาน GroupDocs.Viewer สำหรับ .NET ไม่สามารถแนะนำได้มากพอ" +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "หลังจากใช้งานและใช้งาน GroupDocs.Viewer สำหรับ .NET ในโครงการแล้ว ดูเหมือนว่าจะทำงานได้ดีมาก ฉันได้ทดสอบกับเอกสารจำนวนมากและจนถึงตอนนี้ก็ดีมาก ทุกสิ่งที่ฉันใส่ลงไปนั้นเรนเดอร์ได้อย่างสวยงามและดูดีไม่แพ้กันในโปรแกรมดู PDF หรือ MS Word" +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- \ No newline at end of file diff --git a/content/viewer/net/_index.uk.md b/content/viewer/net/_index.uk.md new file mode 100644 index 00000000..d301f072 --- /dev/null +++ b/content/viewer/net/_index.uk.md @@ -0,0 +1,305 @@ +--- +############################# Static ########################## +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + +############################# Head ############################ +head_title: "API засобу перегляду документів .NET, візуалізація PDF Word Excel Зображення HTML Діаграма" +head_description: "Перегляд файлів C# ASP.NET і API відтворення. Додайте функції перегляду PDF, Word, Excel, зображень, HTML, електронної пошти в програмах .NET." + +############################# Header ########################## +title: "Рендеринг і відображення документів
за допомогою .NET API" +description: "Потужний API Viewer для перетворення понад 180 форматів документів у PDF, HTML і зображення з різноманітними параметрами конфігурації." +words: + for: "for" + +actions: + main: "Безкоштовне завантаження NuGet" + main_link: "https://www.nuget.org/packages/GroupDocs.Viewer" + alt: "Ліцензування" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/net" + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або подайте запит на ліцензію" + +release: + title: "Випущено версію {0}" + notes: "Подивіться, що нового" + downloads: "Завантаження" + link: "https://releases.groupdocs.com/viewer/net/release-notes/latest/" + +code: + title: "Рендер PDF-файлів у C#" + more: "Більше прикладів" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + install: "dotnet add package GroupDocs.Viewer" + content: | + ```csharp {style=abap} + // Завантажте вихідний файл PDF + using (var viewer = new Viewer("resume.pdf")) + { + // Встановити вихідні параметри HTML + var viewOptions = + HtmlViewOptions.ForEmbeddedResources("page{0}.html"); + + // Перетворіть PDF у HTML + viewer.View(viewOptions); + } + ``` + +############################# Overview ############################ +overview: + enable: true + title: "Короткий огляд GroupDocs.Viewer" + description: "API для відтворення, відображення, перетворення документів, слайдів, діаграм і багатьох інших типів документів у програмах .NET" + features: + # feature loop + - title: "Переглядайте документи ефективно та надійно" + content: "За допомогою API GroupDocs.Viewer ви можете ефективно відтворювати документи будь-яких підтримуваних форматів у HTML, JPEG, PNG і PDF за допомогою гнучких і потужних параметрів, зберігаючи цілісність вмісту та структури документа. GroupDocs.Viewer підтримує .NET Framework 4.6.2 і .NET 6.0, працює на платформах Windows і Linux." + + # feature loop + - title: "Підтримуються більшість популярних форматів файлів і документів" + content: "Ми підтримуємо відтворення понад 180 найпопулярніших форматів файлів і документів, включаючи Word, Excel, PDF, PowerPoint, сімейство форматів OpenDocument, архіви, растрові та векторні зображення, електронні книги, мови програмування та розмітки, а також багато інших типів файлів, у тому числі зашифрованих. файли із захистом паролем." + + # feature loop + - title: "Настроюваний вихід" + content: "GroupDocs.Viewer дозволяє не тільки візуалізувати документ, але й контролювати, як саме, які частини документа мають бути візуалізовані або зараз, як вони мають бути візуалізовані, а також застосовувати різні трансформації до відрендерених результатів." + + # feature loop + - title: "Інтерфейс користувача для ASP.NET Core" + content: "Ми надаємо пакет інтерфейсу користувача з відкритим кодом для ASP.NET Core, який можна додати до вашого проекту за пару хвилин. Пакет Viewer.UI містить веб-інтерфейс на основі Angular і надає набір корисних API і постачальників даних для зберігання." + +############################# Platforms ############################ +platforms: + enable: true + title: "Підтримка платформ" + description: "GroupDocs.Viewer для .NET підтримує такі операційні системи, фреймворки та менеджери пакетів" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "VS Code" + image: "vs_code" + # platform loop + - title: "ReSharper" + image: "resharper" + # platform loop + - title: "macOS" + image: "finder" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "NuGet" + image: "nuget" + packages: + # packages loop + - title: "Спеціальний пакет для Windows" + content: | + * Підтримує .NET Framework 4.6.2+ і .NET 6.0 + * Найбільш повна підтримка форматів файлів + * Залежить від System.Drawing і System.Drawing.Common + action: "Завантажити NuGet" + action_link: "https://www.nuget.org/packages/GroupDocs.Viewer" + # packages loop + - title: "Кросплатформенний пакет" + content: | + * Підтримує .NET 6.0 і новіші версії + * Обмежена підтримка форматів файлів + * Працює на Windows, Linux і macOS + action: "Завантажити NuGet" + action_link: "https://www.nuget.org/packages/GroupDocs.Viewer.CrossPlatform" + +############################# File formats ############################ +formats: + enable: true + title: "Підтримувані формати файлів" + description: | + GroupDocs.Viewer для .NET підтримує операції з такими [форматами файлів](https://docs.groupdocs.com/viewer/net/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument і текстові формати + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX {{< landing/tooltip icon="windows" title="Підтримується спеціальним пакетом Windows" >}} + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE {{< landing/tooltip icon="windows" title="Підтримується спеціальним пакетом Windows" >}} + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### Зображення, графіки та діаграми + * **Растрові зображення:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB {{< landing/tooltip icon="windows" title="Підтримується спеціальним пакетом Windows" >}} + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### Інший + * **Інтернет:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM {{< landing/tooltip icon="windows" title="Підтримується спеціальним пакетом Windows" >}} + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **Архіви:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **Інший:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "Функції GroupDocs.Viewer" + description: "Легко візуалізуйте, відображайте та конвертуйте документи PDF і Office" + + items: + # feature loop + - icon: "viewhtml" + title: "Перегляд документів у HTML" + content: "Перетворіть документ будь-якого типу в документ HTML за допомогою CSS і SVG, який можна відобразити в будь-якому сучасному веб-браузері." + + # feature loop + - icon: "rasterize" + title: "Растеризуйте документи" + content: "Растеризуйте будь-який підтримуваний формат документа до растрового зображення з регульованим форматом зображення та якістю стиснення." + + # feature loop + - icon: "sourcecode" + title: "Відтворення та виділення програмних кодів" + content: "Підтримка всіх популярних мов програмування, сценаріїв і розмітки з можливістю аналізу та виділення їх синтаксису." + + # feature loop + - icon: "convertpdf" + title: "Перетворити в PDF" + content: "Документ будь-якого підтримуваного формату можна легко конвертувати та зберегти у PDF із настроюваними параметрами." + + # feature loop + - icon: "transform" + title: "Застосувати перетворення" + content: "Вихідний документ можна трансформувати під час візуалізації - сторінки можна обертати та/або змінювати порядок, а текстовий водяний знак можна розміщувати поверх них." + + # feature loop + - icon: "adjustment" + title: "Налаштування виведення HTML" + content: "Вихідні HTML-документи, згенеровані GroupDocs.Viewer, можна дуже точно налаштувати: дозволено зберігати в потік або файл із зовнішніми або вбудованими ресурсами, зворотними викликами тощо." + + # feature loop + - icon: "complex" + title: "Підтримка складних структур документів" + content: "GroupDocs.Viewer підтримує не лише окремі документи, а й файли, які містять список або ієрархічну структуру документів, як-от повідомлення електронної пошти з вкладеннями, ZIP-архіви з внутрішніми файлами в папках, багатосторінкові зображення TIFF тощо." + + # feature loop + - icon: "optimization" + title: "Варіанти оптимізації" + content: "GroupDocs.Viewer містить регульовану підсистему кешу, яка може пришвидшити час завантаження за допомогою кешованих версій документів. Крім того, набір різних параметрів для різних форматів дозволяє виключити деякі непотрібні частини або аспекти документів із візуалізації (шрифти, приховані аркуші, вкладення електронної пошти), щоб оптимізувати загальну продуктивність" + + # feature loop + - icon: "passwordprotected" + title: "Підтримка документів, захищених паролем" + content: "GroupDocs.Viewer дозволяє відкривати зашифровані документи різних типів: PDF, WordProcessing, Spreadsheet, Presentation та інші, вказавши пароль у параметрах завантаження." + +############################# Code samples ############################ +code_samples: + enable: true + title: "Зразки коду" + description: "Деякі випадки використання типових операцій GroupDocs.Viewer для .NET" + items: + # code sample loop + - title: "Перетворення DOCX у HTML" + content: | + Властивості класу [HtmlViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/htmlviewoptions/) дозволяють контролювати процес перетворення, більше про це [тут](https://docs.groupdocs.com/viewer/net/rendering-to-html/). Наприклад, ви можете вбудувати всі зовнішні ресурси у вихідний HTML-файл, зменшити вихідний файл і оптимізувати його для друку. + {{< landing/code title="C#">}} + ```csharp {style=abap} + using GroupDocs.Viewer; + using GroupDocs.Viewer.Options; + + // Переглядач екземплярів + using (Viewer viewer = new Viewer("resume.docx")) + { + // Встановіть параметри вихідного HTML + HtmlViewOptions options = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть DOCX у HTML за допомогою вбудованих ресурсів + viewer.View(options); + } + ``` + {{< /landing/code >}} + # code sample loop + - title: "Експорт PPTX у PDF" + content: | + Створіть екземпляр класу [PdfViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/pdfviewoptions/) і передайте його в [Viewer.View](https://reference.groupdocs.com/viewer/net/groupdocs.viewer/viewer/view/#view) для перетворення файлу PowerPoint PPTX у PDF. Властивості класу PdfViewOptions дозволяють контролювати процес перетворення. Наприклад, ви можете захистити вихідний PDF-файл, змінити порядок його сторінок і вказати якість зображень документів. Зверніться до [наступного розділу документації](https://docs.groupdocs.com/viewer/net/rendering-to-pdf/), щоб дізнатися більше. + {{< landing/code title="C#">}} + ```csharp {style=abap} + using GroupDocs.Viewer; + using GroupDocs.Viewer.Options; + + using (var viewer = new Viewer("presentation.pptx")) + { + // Встановіть параметри вихідного PDF + var viewOptions = new PdfViewOptions("presentation.pdf"); + + // Експорт PPTX у PDF + viewer.View(viewOptions); + } + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "Огляди продукції GroupDocs" +# description: "Не вірте нам на слово. Подивіться, що інші розробники кажуть про наші API" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Відмінний сервіс і відмінні продукти. Вони були надзвичайно корисними та чуйними під час впровадження GroupDocs.Viewer для .NET, тому не можу рекомендувати їх досить високо." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Після впровадження та використання GroupDocs.Viewer для .NET у проекті виглядає, що він працює дуже добре. Я перевірив багато документів, і поки що все добре. Усе, що я кинув до нього, чудово відображається та виглядає так само добре, як у засобі перегляду PDF чи MS Word." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- \ No newline at end of file diff --git a/content/viewer/net/_index.vi.md b/content/viewer/net/_index.vi.md new file mode 100644 index 00000000..f5e44702 --- /dev/null +++ b/content/viewer/net/_index.vi.md @@ -0,0 +1,305 @@ +--- +############################# Static ########################## +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + +############################# Head ############################ +head_title: "API trình xem tài liệu .NET, hiển thị PDF Sơ đồ HTML Hình ảnh Word Excel" +head_description: "API kết xuất và xem tệp C# ASP.NET. Thêm tính năng xem PDF, xem Word, xem Excel, xem hình ảnh, xem HTML, xem email trong ứng dụng .NET." + +############################# Header ########################## +title: "Kết xuất và hiển thị tài liệu
bằng .NET API" +description: "API trình xem mạnh mẽ để hiển thị hơn 180 định dạng tài liệu thành PDF, HTML và Hình ảnh với các tùy chọn cấu hình linh hoạt." +words: + for: "for" + +actions: + main: "Tải xuống NuGet miễn phí" + main_link: "https://www.nuget.org/packages/GroupDocs.Viewer" + alt: "Cấp phép" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/net" + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + +release: + title: "Đã phát hành phiên bản {0}" + notes: "Xem có gì mới" + downloads: "Tải xuống" + link: "https://releases.groupdocs.com/viewer/net/release-notes/latest/" + +code: + title: "Hiển thị tệp PDF trong C#" + more: "Thêm ví dụ" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + install: "dotnet add package GroupDocs.Viewer" + content: | + ```csharp {style=abap} + // Tải tệp PDF nguồn + using (var viewer = new Viewer("resume.pdf")) + { + // Đặt tùy chọn HTML đầu ra, một tệp trên mỗi trang + var viewOptions = + HtmlViewOptions.ForEmbeddedResources("page{0}.html"); + + // Kết xuất PDF sang HTML + viewer.View(viewOptions); + } + ``` + +############################# Overview ############################ +overview: + enable: true + title: "Tổng quan về GroupDocs.Viewer" + description: "API để kết xuất, hiển thị, chuyển đổi tài liệu, trang trình bày, sơ đồ và nhiều loại tài liệu khác trong ứng dụng .NET" + features: + # feature loop + - title: "Xem tài liệu hiệu quả và đáng tin cậy" + content: "Với API GroupDocs.Viewer, bạn có thể hiển thị hiệu quả các tài liệu thuộc mọi định dạng có thể hỗ trợ sang HTML, JPEG, PNG và PDF với các tùy chọn linh hoạt và mạnh mẽ trong khi vẫn duy trì tính toàn vẹn của nội dung và cấu trúc tài liệu. GroupDocs.Viewer hỗ trợ .NET Framework 4.6.2 và .NET 6.0, nó hoạt động trên nền tảng Windows và Linux." + + # feature loop + - title: "Hỗ trợ hầu hết các định dạng tệp và tài liệu phổ biến" + content: "Chúng tôi hỗ trợ hiển thị trên 180 định dạng tài liệu và tệp phổ biến nhất bao gồm Word, Excel, PDF, PowerPoint, nhóm định dạng OpenDocument, Lưu trữ, hình ảnh Raster và Vector, Sách điện tử, ngôn ngữ lập trình và đánh dấu cũng như nhiều loại tệp khác, bao gồm cả mã hóa tập tin có mật khẩu bảo vệ." + + # feature loop + - title: "Đầu ra có thể tùy chỉnh" + content: "GroupDocs.Viewer không chỉ cho phép hiển thị tài liệu mà còn kiểm soát cách hiển thị chính xác, phần nào của tài liệu sẽ được hiển thị hoặc bây giờ, cách hiển thị chúng và áp dụng các phép biến đổi khác nhau cho đầu ra được hiển thị." + + # feature loop + - title: "Giao diện người dùng cho ASP.NET Core" + content: "Chúng tôi cung cấp gói giao diện người dùng nguồn mở cho ASP.NET Core có thể được thêm vào dự án của bạn sau vài phút. Gói Viewer.UI chứa giao diện người dùng web dựa trên Angular và cung cấp một bộ API hữu ích và nhà cung cấp lưu trữ dữ liệu." + +############################# Platforms ############################ +platforms: + enable: true + title: "Hỗ trợ nền tảng" + description: "GroupDocs.Viewer cho .NET hỗ trợ các hệ điều hành, khung và trình quản lý gói sau" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "VS Code" + image: "vs_code" + # platform loop + - title: "ReSharper" + image: "resharper" + # platform loop + - title: "macOS" + image: "finder" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "NuGet" + image: "nuget" + packages: + # packages loop + - title: "Gói dành riêng cho Windows" + content: | + * Hỗ trợ .NET Framework 4.6.2+ và .NET 6.0 + * Hỗ trợ định dạng tập tin toàn diện nhất + * Phụ thuộc vào System.draw và System.draw.common + action: "Tải xuống NuGet" + action_link: "https://www.nuget.org/packages/GroupDocs.Viewer" + # packages loop + - title: "Gói đa nền tảng" + content: | + * Hỗ trợ .NET 6.0 và các phiên bản cao hơn + * Hỗ trợ định dạng tập tin hạn chế + * Hoạt động trên Windows, Linux và macOS + action: "Tải xuống NuGet" + action_link: "https://www.nuget.org/packages/GroupDocs.Viewer.CrossPlatform" + +############################# File formats ############################ +formats: + enable: true + title: "Các định dạng tập tin được hỗ trợ" + description: | + GroupDocs.Viewer dành cho .NET hỗ trợ các thao tác với sau [định dạng tệp](https://docs.groupdocs.com/viewer/net/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument và các định dạng văn bản + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX {{< landing/tooltip icon="windows" title="Được hỗ trợ bởi gói dành riêng cho Windows" >}} + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE {{< landing/tooltip icon="windows" title="Được hỗ trợ bởi gói dành riêng cho Windows" >}} + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### Hình ảnh, Đồ họa & Sơ đồ + * **Hình ảnh raster:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB {{< landing/tooltip icon="windows" title="Được hỗ trợ bởi gói dành riêng cho Windows" >}} + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### Khác + * **Web:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM {{< landing/tooltip icon="windows" title="Được hỗ trợ bởi gói dành riêng cho Windows" >}} + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **Lưu trữ:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **Khác:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "Tính năng của GroupDocs.Viewer" + description: "Hiển thị, hiển thị và chuyển đổi tài liệu PDF và Office một cách liền mạch" + + items: + # feature loop + - icon: "viewhtml" + title: "Xem tài liệu bằng HTML" + content: "Chuyển đổi bất kỳ loại tài liệu nào thành tài liệu HTML bằng CSS và SVG, có thể được hiển thị trong bất kỳ trình duyệt web hiện đại nào." + + # feature loop + - icon: "rasterize" + title: "Rasterize tài liệu" + content: "Rasterize bất kỳ định dạng tài liệu nào có thể hỗ trợ thành hình ảnh raster, với định dạng hình ảnh có thể điều chỉnh và chất lượng nén." + + # feature loop + - icon: "sourcecode" + title: "Hiển thị và đánh dấu mã lập trình" + content: "Hỗ trợ tất cả các ngôn ngữ lập trình, viết kịch bản và đánh dấu phổ biến, với khả năng phân tích cú pháp và làm nổi bật cú pháp của chúng." + + # feature loop + - icon: "convertpdf" + title: "Chuyển đổi sang PDF" + content: "Tài liệu ở bất kỳ định dạng hỗ trợ nào đều có thể dễ dàng chuyển đổi và lưu thành PDF với các tùy chọn có thể điều chỉnh." + + # feature loop + - icon: "transform" + title: "Áp dụng các phép biến đổi" + content: "Tài liệu đầu ra có thể được chuyển đổi trong quá trình hiển thị - các trang có thể được xoay và/hoặc sắp xếp lại và hình mờ văn bản có thể được đặt trên chúng." + + # feature loop + - icon: "adjustment" + title: "Điều chỉnh đầu ra HTML" + content: "Các tài liệu HTML đầu ra do GroupDocs.Viewer tạo ra có thể được điều chỉnh rất tinh vi: nó được phép lưu vào luồng hoặc tệp, với các tài nguyên bên ngoài hoặc được nhúng, lệnh gọi lại, v.v." + + # feature loop + - icon: "complex" + title: "Hỗ trợ cấu trúc tài liệu phức tạp" + content: "GroupDocs.Viewer không chỉ hỗ trợ các tài liệu đơn lẻ mà còn hỗ trợ các tệp chứa danh sách hoặc cấu trúc phân cấp của tài liệu, như email có tệp đính kèm, kho lưu trữ ZIP với các tệp nội bộ trong thư mục, hình ảnh TIFF nhiều trang, v.v." + + # feature loop + - icon: "optimization" + title: "Tùy chọn tối ưu hóa" + content: "GroupDocs.Viewer chứa một hệ thống con bộ nhớ đệm có thể điều chỉnh, hệ thống này có thể rút ngắn thời gian tải bằng cách sử dụng các phiên bản tài liệu được lưu trong bộ nhớ đệm. Ngoài ra, một tập hợp các tùy chọn khác nhau cho các định dạng khác nhau cho phép loại trừ một số phần hoặc khía cạnh không cần thiết của tài liệu khỏi quá trình hiển thị (phông chữ, bảng tính ẩn, tệp đính kèm email) để tối ưu hóa hiệu suất tổng thể" + + # feature loop + - icon: "passwordprotected" + title: "Hỗ trợ các tài liệu được bảo vệ bằng mật khẩu" + content: "GroupDocs.Viewer cho phép mở các tài liệu được mã hóa thuộc nhiều loại khác nhau: PDF, WordProcessing, Bảng tính, Bản trình bày và các loại khác bằng cách chỉ định mật khẩu trong các tùy chọn tải." + +############################# Code samples ############################ +code_samples: + enable: true + title: "Mẫu mã" + description: "Một số trường hợp sử dụng GroupDocs.Viewer điển hình cho các hoạt động .NET" + items: + # code sample loop + - title: "Kết xuất DOCX sang HTML" + content: | + Thuộc tính lớp [HtmlViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/htmlviewoptions/) cho phép bạn kiểm soát quá trình chuyển đổi, tìm hiểu thêm về điều đó [tại đây](https://docs.groupdocs.com/viewer/net/rendering-to-html/). Ví dụ: bạn có thể nhúng tất cả tài nguyên bên ngoài vào tệp HTML đầu ra, thu nhỏ tệp đầu ra và tối ưu hóa tệp để in. + {{< landing/code title="C#">}} + ```csharp {style=abap} + using GroupDocs.Viewer; + using GroupDocs.Viewer.Options; + + // Khởi tạo trình xem + using (Viewer viewer = new Viewer("resume.docx")) + { + // Đặt tùy chọn HTML đầu ra + HtmlViewOptions options = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất DOCX sang HTML bằng tài nguyên được nhúng + viewer.View(options); + } + ``` + {{< /landing/code >}} + # code sample loop + - title: "Xuất PPTX sang PDF" + content: | + Tạo một phiên bản lớp [PdfViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/pdfviewoptions/) và chuyển nó tới [Viewer.View](https://reference.groupdocs.com/viewer/net/groupdocs.viewer/viewer/view/#view) để chuyển đổi tệp PowerPoint PPTX sang PDF. Thuộc tính lớp PdfViewOptions cho phép bạn kiểm soát quá trình chuyển đổi. Ví dụ: bạn có thể bảo vệ tệp PDF đầu ra, sắp xếp lại các trang của nó và chỉ định chất lượng của hình ảnh tài liệu. Hãy tham khảo [phần tài liệu sau](https://docs.groupdocs.com/viewer/net/rendering-to-pdf/) để biết thông tin chi tiết. + {{< landing/code title="C#">}} + ```csharp {style=abap} + using GroupDocs.Viewer; + using GroupDocs.Viewer.Options; + + using (var viewer = new Viewer("presentation.pptx")) + { + // Đặt tùy chọn PDF đầu ra + var viewOptions = new PdfViewOptions("presentation.pdf"); + + // Xuất PPTX sang PDF + viewer.View(viewOptions); + } + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "Đánh giá sản phẩm GroupDocs" +# description: "Đừng chỉ tin lời chúng tôi. Xem những nhà phát triển khác nói gì về API của chúng tôi" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Dịch vụ tuyệt vời và sản phẩm tuyệt vời. Chúng cực kỳ hữu ích và phản hồi nhanh trong quá trình triển khai GroupDocs.Viewer cho .NET, không thể giới thiệu chúng đủ cao." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Sau khi triển khai và sử dụng GroupDocs.Viewer cho .NET trong dự án, có vẻ như nó hoạt động rất tốt. Tôi đã thử nghiệm với rất nhiều tài liệu và cho đến nay vẫn tốt. Mọi thứ tôi đưa vào nó đều hiển thị độc đáo và trông đẹp như trong trình xem PDF hoặc MS Word." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- \ No newline at end of file diff --git a/content/viewer/net/_index.zh.md b/content/viewer/net/_index.zh.md new file mode 100644 index 00000000..0aded88a --- /dev/null +++ b/content/viewer/net/_index.zh.md @@ -0,0 +1,305 @@ +--- +############################# Static ########################## +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + +############################# Head ############################ +head_title: ".NET 文档查看器 API,渲染 PDF Word Excel 图像 HTML 图表" +head_description: "C# ASP.NET 文件查看器和渲染 API。在 .NET 应用程序中添加 PDF 查看器、Word 查看器、Excel 查看器、图像查看器、HTML 查看器、电子邮件查看器功能。" + +############################# Header ########################## +title: "使用 .NET API 渲染和显示文档
" +description: "强大的查看器 API,可通过多种配置选项将 180 多种文档格式呈现为 PDF、HTML 和图像。" +words: + for: "for" + +actions: + main: "免费 NuGet 下载" + main_link: "https://www.nuget.org/packages/GroupDocs.Viewer" + alt: "许可" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/net" + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + +release: + title: "版本 {0} 已发布" + notes: "看看有什么新鲜事" + downloads: "下载" + link: "https://releases.groupdocs.com/viewer/net/release-notes/latest/" + +code: + title: "在 C# 中渲染 PDF 文件" + more: "更多示例" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + install: "dotnet add package GroupDocs.Viewer" + content: | + ```csharp {style=abap} + // 加载源 PDF 文件 + using (var viewer = new Viewer("resume.pdf")) + { + // 设置输出 HTML 选项,每页一个文件 + var viewOptions = + HtmlViewOptions.ForEmbeddedResources("page{0}.html"); + + // 使用嵌入资源将 PDF 渲染为 HTML + viewer.View(viewOptions); + } + ``` + +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer 概览" + description: "用于在 .NET 应用程序中渲染、显示、转换文档、幻灯片、图表和许多其他文档类型的 API" + features: + # feature loop + - title: "高效可靠地查看文档" + content: "借助 GroupDocs.Viewer API,您可以使用灵活而强大的选项将任何支持格式的文档高效呈现为 HTML、JPEG、PNG 和 PDF,同时保持内容和文档结构的完整性。 GroupDocs.Viewer支持.NET Framework 4.6.2和.NET 6.0,它可以在Windows和Linux平台上运行。" + + # feature loop + - title: "支持最流行的文件和文档格式" + content: "我们支持渲染 180 多种最流行的文件和文档格式,包括 Word、Excel、PDF、PowerPoint、OpenDocument 格式系列、档案、光栅和矢量图像、电子书、编程语言和标记以及许多其他文件类型,包括加密的文件类型受密码保护的文件。" + + # feature loop + - title: "可定制的输出" + content: "GroupDocs.Viewer 不仅允许渲染文档,还可以控制渲染的准确方式、文档的哪些部分应该渲染或现在渲染、如何渲染,以及对渲染的输出应用不同的转换。" + + # feature loop + - title: "ASP.NET Core 的 UI" + content: "我们为 ASP.NET Core 提供了一个开源 UI 包,可以在几分钟内将其添加到您的项目中。 Viewer.UI 包包含一个基于 Angular 的 Web UI,并提供了一组有用的 API 和数据存储提供程序。" + +############################# Platforms ############################ +platforms: + enable: true + title: "平台支持" + description: "GroupDocs.Viewer for .NET 支持以下操作系统、框架和包管理器" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "VS Code" + image: "vs_code" + # platform loop + - title: "ReSharper" + image: "resharper" + # platform loop + - title: "macOS" + image: "finder" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "NuGet" + image: "nuget" + packages: + # packages loop + - title: "Windows 专用包" + content: | + * 支持.NET Framework 4.6.2+ 和 .NET 6.0 + * 最全面的文件格式支持 + * 取决于 System.Drawing 和 System.Drawing.Common + action: "NuGet下载" + action_link: "https://www.nuget.org/packages/GroupDocs.Viewer" + # packages loop + - title: "跨平台包" + content: | + * 支持.NET 6.0及更高版本 + * 支持有限的文件格式 + * 适用于 Windows、Linux 和 macOS + action: "NuGet下载" + action_link: "https://www.nuget.org/packages/GroupDocs.Viewer.CrossPlatform" + +############################# File formats ############################ +formats: + enable: true + title: "支持的文件格式" + description: | + GroupDocs.Viewer for .NET 支持以下[文件格式](https://docs.groupdocs.com/viewer/net/supported-document-formats/) 的操作。 + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office、OpenDocument 和文本格式 + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX {{< landing/tooltip icon="windows" title="由 Windows 特定包支持" >}} + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE {{< landing/tooltip icon="windows" title="由 Windows 特定包支持" >}} + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### 图像、图形和图表 + * **光栅图像:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB {{< landing/tooltip icon="windows" title="由 Windows 特定包支持" >}} + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### 其他 + * **网络:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM {{< landing/tooltip icon="windows" title="由 Windows 特定包支持" >}} + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **档案:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **其他:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "GroupDocs.Viewer 功能" + description: "无缝渲染、显示和转换 PDF 和 Office 文档" + + items: + # feature loop + - icon: "viewhtml" + title: "查看 HTML 格式的文档" + content: "使用 CSS 和 SVG 将任何类型的文档转换为 HTML 文档,可以在任何现代网络浏览器中显示。" + + # feature loop + - icon: "rasterize" + title: "光栅化文档" + content: "将任何支持的文档格式光栅化为光栅图像,并具有可调整的图像格式和压缩质量。" + + # feature loop + - icon: "sourcecode" + title: "渲染并突出显示编程代码" + content: "支持所有流行的编程、脚本和标记语言,能够解析和突出显示其语法。" + + # feature loop + - icon: "convertpdf" + title: "转换为 PDF" + content: "任何支持格式的文档都可以通过可调整的选项轻松转换并保存为 PDF。" + + # feature loop + - icon: "transform" + title: "应用转换" + content: "输出文档可以在渲染过程中进行转换 - 页面可以旋转和/或重新排列,并且文本水印可以放置在它们的顶部。" + + # feature loop + - icon: "adjustment" + title: "HTML 输出调整" + content: "由 GroupDocs.Viewer 生成的输出 HTML 文档可以进行非常精细的调整:允许使用外部或嵌入资源、回调等保存到流或文件。" + + # feature loop + - icon: "complex" + title: "支持复杂的文档结构" + content: "GroupDocs.Viewer 不仅支持单个文档,还支持内部包含文档列表或层次结构的文件,例如带有附件的电子邮件、文件夹内带有内部文件的 ZIP 存档、多页 TIFF 图像等。" + + # feature loop + - icon: "optimization" + title: "优化选项" + content: "GroupDocs.Viewer 包含一个可调整的缓存子系统,它可以通过使用文档的缓存版本来缩短加载时间。此外,针对不同格式的一组不同选项允许从渲染中排除文档的一些不必要的部分或方面(字体、隐藏的工作表、电子邮件附件),以优化整体性能" + + # feature loop + - icon: "passwordprotected" + title: "支持受密码保护的文档" + content: "GroupDocs.Viewer 允许通过在加载选项中指定密码来打开不同类型的加密文档:PDF、WordProcessing、电子表格、演示文稿等。" + +############################# Code samples ############################ +code_samples: + enable: true + title: "代码示例" + description: "用于 .NET 操作的典型 GroupDocs.Viewer 的一些用例" + items: + # code sample loop + - title: "将 DOCX 渲染为 HTML" + content: | + [HtmlViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/htmlviewoptions/) 类属性允许您控制转换过程,更多信息[此处](https://docs.groupdocs.com/viewer/net/rendering-to-html/)。 例如,您可以将所有外部资源嵌入到输出 HTML 文件中、缩小输出文件并优化其打印。 + {{< landing/code title="C#">}} + ```csharp {style=abap} + using GroupDocs.Viewer; + using GroupDocs.Viewer.Options; + + // 实例化查看器 + using (Viewer viewer = new Viewer("resume.docx")) + { + // 设置输出 HTML 选项 + HtmlViewOptions options = HtmlViewOptions.ForEmbeddedResources(); + + // 使用嵌入资源将 DOCX 渲染为 HTML + viewer.View(options); + } + ``` + {{< /landing/code >}} + # code sample loop + - title: "将 PPTX 导出为 PDF" + content: | + 创建一个 [PdfViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/pdfviewoptions/) 类实例并将其传递给 [Viewer.View](https://reference.groupdocs.com/viewer/net/groupdocs.viewer/viewer/view/#view) 方法将 PowerPoint PPTX 文件转换为 PDF。 PdfViewOptions 类属性允许您控制转换过程。例如,您可以保护输出 PDF 文件、重新排序其页面以及指定文档图像的质量。有关详细信息,请参阅[以下文档部分](https://docs.groupdocs.com/viewer/net/rendering-to-pdf/)。 + {{< landing/code title="C#">}} + ```csharp {style=abap} + using GroupDocs.Viewer; + using GroupDocs.Viewer.Options; + + using (var viewer = new Viewer("presentation.pptx")) + { + // 设置输出 PDF 选项 + var viewOptions = new PdfViewOptions("presentation.pdf"); + + // 将 PPTX 导出为 PDF + viewer.View(viewOptions); + } + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "GroupDocs 产品评论" +# description: "不要只相信我们的话。看看其他开发人员如何评价我们的 API" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "优质的服务和优质的产品。他们在 GroupDocs.Viewer for .NET 实施过程中提供了极大的帮助和响应,强烈推荐他们。" +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "在项目中实现并使用 GroupDocs.Viewer for .NET 后,它看起来运行得很好。我已经用很多文档进行了测试,到目前为止一切顺利。我扔给它的所有内容都可以很好地呈现,并且看起来与在 PDF 查看器或 MS Word 中一样好。" +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- \ No newline at end of file diff --git a/content/viewer/net/h.es.md b/content/viewer/net/h.es.md new file mode 100644 index 00000000..57c43b18 --- /dev/null +++ b/content/viewer/net/h.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET H API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar H en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "H visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos H en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo H en C#" + content: | + Con GroupDocs.Viewer puede renderizar H a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo H con la ruta completa. + 3. Configure opciones para representar el archivo H en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada H + string filePath = "input.h"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo H a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "H" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/h.fa.md b/content/viewer/net/h.fa.md new file mode 100644 index 00000000..7de55e30 --- /dev/null +++ b/content/viewer/net/h.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET H بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش H در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل H برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل H در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل H در C#" + content: | + با GroupDocs.Viewer می‌توانید H را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل H را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل H در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی H را تنظیم کنید + string filePath = "input.h"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل H را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "H" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/h.fr.md b/content/viewer/net/h.fr.md new file mode 100644 index 00000000..261333ac --- /dev/null +++ b/content/viewer/net/h.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET H - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher H dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "H visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier H dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier H dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer H au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier H avec le chemin complet. + 3. Définissez les options pour restituer le fichier H au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée H + string filePath = "input.h"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier H au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "H" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/h.id.md b/content/viewer/net/h.id.md new file mode 100644 index 00000000..6c983dad --- /dev/null +++ b/content/viewer/net/h.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET H Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan H di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "H penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file H dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file H di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender H ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file H dengan path lengkap. + 3. Tetapkan opsi untuk merender file H ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan H + string filePath = "input.h"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file H ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "H" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/h.it.md b/content/viewer/net/h.it.md new file mode 100644 index 00000000..a014bec5 --- /dev/null +++ b/content/viewer/net/h.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET H: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare H in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file H per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file H in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file H in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di H in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file H con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file H nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input H + string filePath = "input.h"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file H in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "H" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/h.ja.md b/content/viewer/net/h.ja.md new file mode 100644 index 00000000..bd02f821 --- /dev/null +++ b/content/viewer/net/h.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET H ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで H を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の H ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで H ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で H ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で H を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、H ファイルをフルパスでロードします。 + 3. H ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 H ファイルを設定する + string filePath = "input.h"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた H ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "H" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/h.ko.md b/content/viewer/net/h.ko.md new file mode 100644 index 00000000..30be8172 --- /dev/null +++ b/content/viewer/net/h.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET H 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 H을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 H 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 H 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 H 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 H을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 H 파일을 로드합니다. + 3. H 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 H 파일 설정 + string filePath = "input.h"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 H 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "H" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/h.pt.md b/content/viewer/net/h.pt.md new file mode 100644 index 00000000..c7ce4c90 --- /dev/null +++ b/content/viewer/net/h.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET H API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir H em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos H para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos H em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo H em C#" + content: | + Com GroupDocs.Viewer você pode renderizar H para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo H com caminho completo. + 3. Defina opções para renderizar o arquivo H em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada H + string filePath = "input.h"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo H em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "H" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/h.ru.md b/content/viewer/net/h.ru.md new file mode 100644 index 00000000..d63fb2b1 --- /dev/null +++ b/content/viewer/net/h.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET H API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения H в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "H средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла H в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла H в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать H в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл H с полным путем. + 3. Установите параметры для преобразования файла H в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл H + string filePath = "input.h"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл H в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "H" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/h.th.md b/content/viewer/net/h.th.md new file mode 100644 index 00000000..9cc5a7b0 --- /dev/null +++ b/content/viewer/net/h.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET H Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง H ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ H สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ H ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ H ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล H เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ H ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ H เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต H + string filePath = "input.h"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ H เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "H" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/h.uk.md b/content/viewer/net/h.uk.md new file mode 100644 index 00000000..5c273e60 --- /dev/null +++ b/content/viewer/net/h.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET H Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення H у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів H для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу H у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу H у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити H у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл H із повним шляхом. + 3. Встановіть параметри для перетворення файлу H у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл H + string filePath = "input.h"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл H у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "H" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/h.vi.md b/content/viewer/net/h.vi.md new file mode 100644 index 00000000..411c241a --- /dev/null +++ b/content/viewer/net/h.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET H - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị H trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp H dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp H trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp H trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị H thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp H với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp H thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp H đầu vào + string filePath = "input.h"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp H thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "H" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/h.zh.md b/content/viewer/net/h.zh.md new file mode 100644 index 00000000..93cd94c8 --- /dev/null +++ b/content/viewer/net/h.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET H Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 H。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 H 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 H 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 H 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 H 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 H 文件。 + 3. 设置选项以将 H 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 H 文件 + string filePath = "input.h"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 H 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "H" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/haml.de.md b/content/viewer/net/haml.de.md new file mode 100644 index 00000000..f472452d --- /dev/null +++ b/content/viewer/net/haml.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HAML Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von HAML in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "HAML Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von HAML-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der HAML-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie HAML in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei HAML mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei HAML im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei HAML ein + string filePath = "input.haml"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei HAML mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "HAML" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/haml.en.md b/content/viewer/net/haml.en.md new file mode 100644 index 00000000..4dc9f980 --- /dev/null +++ b/content/viewer/net/haml.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HAML Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display HAML in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "HAML file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display HAML file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render HAML file in C#" + content: | + With GroupDocs.Viewer you can render HAML to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the HAML file with full path. + 3. Set options to render HAML file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input HAML file + string filePath = "input.haml"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render HAML file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "HAML" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/haml.es.md b/content/viewer/net/haml.es.md new file mode 100644 index 00000000..e224d962 --- /dev/null +++ b/content/viewer/net/haml.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HAML API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar HAML en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "HAML visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos HAML en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo HAML en C#" + content: | + Con GroupDocs.Viewer puede renderizar HAML a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo HAML con la ruta completa. + 3. Configure opciones para representar el archivo HAML en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada HAML + string filePath = "input.haml"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo HAML a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "HAML" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/haml.fa.md b/content/viewer/net/haml.fa.md new file mode 100644 index 00000000..282e8167 --- /dev/null +++ b/content/viewer/net/haml.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HAML بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش HAML در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل HAML برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل HAML در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل HAML در C#" + content: | + با GroupDocs.Viewer می‌توانید HAML را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل HAML را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل HAML در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی HAML را تنظیم کنید + string filePath = "input.haml"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل HAML را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "HAML" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/haml.fr.md b/content/viewer/net/haml.fr.md new file mode 100644 index 00000000..1993837c --- /dev/null +++ b/content/viewer/net/haml.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET HAML - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher HAML dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "HAML visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier HAML dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier HAML dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer HAML au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier HAML avec le chemin complet. + 3. Définissez les options pour restituer le fichier HAML au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée HAML + string filePath = "input.haml"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier HAML au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "HAML" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/haml.id.md b/content/viewer/net/haml.id.md new file mode 100644 index 00000000..f02413dc --- /dev/null +++ b/content/viewer/net/haml.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HAML Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan HAML di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "HAML penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file HAML dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file HAML di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender HAML ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file HAML dengan path lengkap. + 3. Tetapkan opsi untuk merender file HAML ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan HAML + string filePath = "input.haml"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file HAML ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "HAML" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/haml.it.md b/content/viewer/net/haml.it.md new file mode 100644 index 00000000..e4bf2b19 --- /dev/null +++ b/content/viewer/net/haml.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET HAML: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare HAML in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file HAML per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file HAML in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file HAML in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di HAML in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file HAML con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file HAML nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input HAML + string filePath = "input.haml"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file HAML in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "HAML" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/haml.ja.md b/content/viewer/net/haml.ja.md new file mode 100644 index 00000000..3aa6d4e7 --- /dev/null +++ b/content/viewer/net/haml.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HAML ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで HAML を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の HAML ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで HAML ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で HAML ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で HAML を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、HAML ファイルをフルパスでロードします。 + 3. HAML ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 HAML ファイルを設定する + string filePath = "input.haml"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた HAML ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "HAML" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/haml.ko.md b/content/viewer/net/haml.ko.md new file mode 100644 index 00000000..0012f1bf --- /dev/null +++ b/content/viewer/net/haml.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HAML 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 HAML을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 HAML 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 HAML 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 HAML 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 HAML을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 HAML 파일을 로드합니다. + 3. HAML 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 HAML 파일 설정 + string filePath = "input.haml"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 HAML 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "HAML" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/haml.pt.md b/content/viewer/net/haml.pt.md new file mode 100644 index 00000000..1ec5dd4a --- /dev/null +++ b/content/viewer/net/haml.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HAML API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir HAML em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos HAML para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos HAML em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo HAML em C#" + content: | + Com GroupDocs.Viewer você pode renderizar HAML para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo HAML com caminho completo. + 3. Defina opções para renderizar o arquivo HAML em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada HAML + string filePath = "input.haml"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo HAML em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "HAML" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/haml.ru.md b/content/viewer/net/haml.ru.md new file mode 100644 index 00000000..75f7987c --- /dev/null +++ b/content/viewer/net/haml.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HAML API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения HAML в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "HAML средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла HAML в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла HAML в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать HAML в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл HAML с полным путем. + 3. Установите параметры для преобразования файла HAML в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл HAML + string filePath = "input.haml"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл HAML в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "HAML" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/haml.th.md b/content/viewer/net/haml.th.md new file mode 100644 index 00000000..9f1df8ff --- /dev/null +++ b/content/viewer/net/haml.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HAML Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง HAML ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ HAML สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ HAML ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ HAML ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล HAML เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ HAML ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ HAML เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต HAML + string filePath = "input.haml"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ HAML เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "HAML" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/haml.uk.md b/content/viewer/net/haml.uk.md new file mode 100644 index 00000000..3f1253f9 --- /dev/null +++ b/content/viewer/net/haml.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HAML Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення HAML у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів HAML для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу HAML у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу HAML у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити HAML у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл HAML із повним шляхом. + 3. Встановіть параметри для перетворення файлу HAML у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл HAML + string filePath = "input.haml"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл HAML у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "HAML" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/haml.vi.md b/content/viewer/net/haml.vi.md new file mode 100644 index 00000000..f67291e0 --- /dev/null +++ b/content/viewer/net/haml.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET HAML - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị HAML trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp HAML dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp HAML trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp HAML trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị HAML thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp HAML với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp HAML thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp HAML đầu vào + string filePath = "input.haml"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp HAML thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "HAML" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/haml.zh.md b/content/viewer/net/haml.zh.md new file mode 100644 index 00000000..6308e55f --- /dev/null +++ b/content/viewer/net/haml.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HAML Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 HAML。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 HAML 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 HAML 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 HAML 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 HAML 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 HAML 文件。 + 3. 设置选项以将 HAML 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 HAML 文件 + string filePath = "input.haml"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 HAML 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "HAML" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/hh.de.md b/content/viewer/net/hh.de.md new file mode 100644 index 00000000..1aa0eb2c --- /dev/null +++ b/content/viewer/net/hh.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HH Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von HH in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "HH Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von HH-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der HH-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie HH in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei HH mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei HH im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei HH ein + string filePath = "input.hh"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei HH mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "HH" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/hh.en.md b/content/viewer/net/hh.en.md new file mode 100644 index 00000000..5056ae9b --- /dev/null +++ b/content/viewer/net/hh.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HH Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display HH in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "HH file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display HH file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render HH file in C#" + content: | + With GroupDocs.Viewer you can render HH to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the HH file with full path. + 3. Set options to render HH file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input HH file + string filePath = "input.hh"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render HH file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "HH" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/hh.es.md b/content/viewer/net/hh.es.md new file mode 100644 index 00000000..dd3f9369 --- /dev/null +++ b/content/viewer/net/hh.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HH API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar HH en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "HH visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos HH en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo HH en C#" + content: | + Con GroupDocs.Viewer puede renderizar HH a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo HH con la ruta completa. + 3. Configure opciones para representar el archivo HH en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada HH + string filePath = "input.hh"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo HH a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "HH" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/hh.fa.md b/content/viewer/net/hh.fa.md new file mode 100644 index 00000000..60ab231f --- /dev/null +++ b/content/viewer/net/hh.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HH بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش HH در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل HH برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل HH در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل HH در C#" + content: | + با GroupDocs.Viewer می‌توانید HH را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل HH را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل HH در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی HH را تنظیم کنید + string filePath = "input.hh"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل HH را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "HH" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/hh.fr.md b/content/viewer/net/hh.fr.md new file mode 100644 index 00000000..34ff9b87 --- /dev/null +++ b/content/viewer/net/hh.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET HH - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher HH dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "HH visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier HH dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier HH dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer HH au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier HH avec le chemin complet. + 3. Définissez les options pour restituer le fichier HH au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée HH + string filePath = "input.hh"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier HH au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "HH" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/hh.id.md b/content/viewer/net/hh.id.md new file mode 100644 index 00000000..6fed9afb --- /dev/null +++ b/content/viewer/net/hh.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HH Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan HH di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "HH penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file HH dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file HH di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender HH ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file HH dengan path lengkap. + 3. Tetapkan opsi untuk merender file HH ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan HH + string filePath = "input.hh"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file HH ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "HH" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/hh.it.md b/content/viewer/net/hh.it.md new file mode 100644 index 00000000..e8b9692f --- /dev/null +++ b/content/viewer/net/hh.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET HH: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare HH in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file HH per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file HH in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file HH in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di HH in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file HH con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file HH nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input HH + string filePath = "input.hh"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file HH in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "HH" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/hh.ja.md b/content/viewer/net/hh.ja.md new file mode 100644 index 00000000..4ccce683 --- /dev/null +++ b/content/viewer/net/hh.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HH ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで HH を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の HH ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで HH ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で HH ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で HH を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、HH ファイルをフルパスでロードします。 + 3. HH ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 HH ファイルを設定する + string filePath = "input.hh"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた HH ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "HH" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/hh.ko.md b/content/viewer/net/hh.ko.md new file mode 100644 index 00000000..76e393c7 --- /dev/null +++ b/content/viewer/net/hh.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HH 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 HH을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 HH 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 HH 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 HH 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 HH을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 HH 파일을 로드합니다. + 3. HH 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 HH 파일 설정 + string filePath = "input.hh"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 HH 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "HH" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/hh.pt.md b/content/viewer/net/hh.pt.md new file mode 100644 index 00000000..7fb22e2c --- /dev/null +++ b/content/viewer/net/hh.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HH API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir HH em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos HH para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos HH em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo HH em C#" + content: | + Com GroupDocs.Viewer você pode renderizar HH para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo HH com caminho completo. + 3. Defina opções para renderizar o arquivo HH em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada HH + string filePath = "input.hh"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo HH em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "HH" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/hh.ru.md b/content/viewer/net/hh.ru.md new file mode 100644 index 00000000..1488736f --- /dev/null +++ b/content/viewer/net/hh.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HH API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения HH в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "HH средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла HH в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла HH в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать HH в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл HH с полным путем. + 3. Установите параметры для преобразования файла HH в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл HH + string filePath = "input.hh"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл HH в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "HH" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/hh.th.md b/content/viewer/net/hh.th.md new file mode 100644 index 00000000..b3dd6f6c --- /dev/null +++ b/content/viewer/net/hh.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HH Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง HH ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ HH สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ HH ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ HH ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล HH เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ HH ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ HH เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต HH + string filePath = "input.hh"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ HH เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "HH" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/hh.uk.md b/content/viewer/net/hh.uk.md new file mode 100644 index 00000000..bc8608cd --- /dev/null +++ b/content/viewer/net/hh.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HH Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення HH у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів HH для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу HH у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу HH у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити HH у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл HH із повним шляхом. + 3. Встановіть параметри для перетворення файлу HH у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл HH + string filePath = "input.hh"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл HH у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "HH" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/hh.vi.md b/content/viewer/net/hh.vi.md new file mode 100644 index 00000000..d81ea1af --- /dev/null +++ b/content/viewer/net/hh.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET HH - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị HH trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp HH dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp HH trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp HH trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị HH thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp HH với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp HH thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp HH đầu vào + string filePath = "input.hh"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp HH thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "HH" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/hh.zh.md b/content/viewer/net/hh.zh.md new file mode 100644 index 00000000..22273e0d --- /dev/null +++ b/content/viewer/net/hh.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HH Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 HH。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 HH 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 HH 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 HH 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 HH 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 HH 文件。 + 3. 设置选项以将 HH 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 HH 文件 + string filePath = "input.hh"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 HH 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "HH" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/hpg.de.md b/content/viewer/net/hpg.de.md new file mode 100644 index 00000000..bcbdc00b --- /dev/null +++ b/content/viewer/net/hpg.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HPG Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von HPG in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "HPG Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von HPG-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der HPG-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie HPG in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei HPG mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei HPG im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei HPG ein + string filePath = "input.hpg"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei HPG mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "HPG" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/hpg.en.md b/content/viewer/net/hpg.en.md new file mode 100644 index 00000000..6cf36c31 --- /dev/null +++ b/content/viewer/net/hpg.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HPG Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display HPG in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "HPG file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display HPG file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render HPG file in C#" + content: | + With GroupDocs.Viewer you can render HPG to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the HPG file with full path. + 3. Set options to render HPG file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input HPG file + string filePath = "input.hpg"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render HPG file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "HPG" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/hpg.es.md b/content/viewer/net/hpg.es.md new file mode 100644 index 00000000..050c71ce --- /dev/null +++ b/content/viewer/net/hpg.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HPG API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar HPG en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "HPG visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos HPG en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo HPG en C#" + content: | + Con GroupDocs.Viewer puede renderizar HPG a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo HPG con la ruta completa. + 3. Configure opciones para representar el archivo HPG en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada HPG + string filePath = "input.hpg"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo HPG a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "HPG" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/hpg.fa.md b/content/viewer/net/hpg.fa.md new file mode 100644 index 00000000..975cdabe --- /dev/null +++ b/content/viewer/net/hpg.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HPG بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش HPG در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل HPG برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل HPG در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل HPG در C#" + content: | + با GroupDocs.Viewer می‌توانید HPG را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل HPG را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل HPG در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی HPG را تنظیم کنید + string filePath = "input.hpg"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل HPG را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "HPG" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/hpg.fr.md b/content/viewer/net/hpg.fr.md new file mode 100644 index 00000000..15b33034 --- /dev/null +++ b/content/viewer/net/hpg.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET HPG - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher HPG dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "HPG visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier HPG dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier HPG dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer HPG au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier HPG avec le chemin complet. + 3. Définissez les options pour restituer le fichier HPG au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée HPG + string filePath = "input.hpg"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier HPG au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "HPG" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/hpg.id.md b/content/viewer/net/hpg.id.md new file mode 100644 index 00000000..2d907e71 --- /dev/null +++ b/content/viewer/net/hpg.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HPG Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan HPG di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "HPG penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file HPG dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file HPG di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender HPG ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file HPG dengan path lengkap. + 3. Tetapkan opsi untuk merender file HPG ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan HPG + string filePath = "input.hpg"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file HPG ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "HPG" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/hpg.it.md b/content/viewer/net/hpg.it.md new file mode 100644 index 00000000..ec7cbf54 --- /dev/null +++ b/content/viewer/net/hpg.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET HPG: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare HPG in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file HPG per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file HPG in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file HPG in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di HPG in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file HPG con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file HPG nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input HPG + string filePath = "input.hpg"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file HPG in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "HPG" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/hpg.ja.md b/content/viewer/net/hpg.ja.md new file mode 100644 index 00000000..421a03f5 --- /dev/null +++ b/content/viewer/net/hpg.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HPG ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで HPG を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の HPG ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで HPG ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で HPG ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で HPG を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、HPG ファイルをフルパスでロードします。 + 3. HPG ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 HPG ファイルを設定する + string filePath = "input.hpg"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた HPG ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "HPG" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/hpg.ko.md b/content/viewer/net/hpg.ko.md new file mode 100644 index 00000000..6d52b32c --- /dev/null +++ b/content/viewer/net/hpg.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HPG 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 HPG을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 HPG 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 HPG 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 HPG 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 HPG을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 HPG 파일을 로드합니다. + 3. HPG 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 HPG 파일 설정 + string filePath = "input.hpg"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 HPG 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "HPG" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/hpg.pt.md b/content/viewer/net/hpg.pt.md new file mode 100644 index 00000000..fed17240 --- /dev/null +++ b/content/viewer/net/hpg.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HPG API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir HPG em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos HPG para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos HPG em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo HPG em C#" + content: | + Com GroupDocs.Viewer você pode renderizar HPG para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo HPG com caminho completo. + 3. Defina opções para renderizar o arquivo HPG em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada HPG + string filePath = "input.hpg"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo HPG em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "HPG" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/hpg.ru.md b/content/viewer/net/hpg.ru.md new file mode 100644 index 00000000..6b232699 --- /dev/null +++ b/content/viewer/net/hpg.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HPG API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения HPG в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "HPG средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла HPG в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла HPG в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать HPG в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл HPG с полным путем. + 3. Установите параметры для преобразования файла HPG в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл HPG + string filePath = "input.hpg"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл HPG в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "HPG" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/hpg.th.md b/content/viewer/net/hpg.th.md new file mode 100644 index 00000000..688f3840 --- /dev/null +++ b/content/viewer/net/hpg.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HPG Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง HPG ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ HPG สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ HPG ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ HPG ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล HPG เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ HPG ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ HPG เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต HPG + string filePath = "input.hpg"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ HPG เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "HPG" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/hpg.uk.md b/content/viewer/net/hpg.uk.md new file mode 100644 index 00000000..1f137398 --- /dev/null +++ b/content/viewer/net/hpg.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HPG Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення HPG у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів HPG для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу HPG у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу HPG у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити HPG у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл HPG із повним шляхом. + 3. Встановіть параметри для перетворення файлу HPG у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл HPG + string filePath = "input.hpg"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл HPG у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "HPG" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/hpg.vi.md b/content/viewer/net/hpg.vi.md new file mode 100644 index 00000000..59c61322 --- /dev/null +++ b/content/viewer/net/hpg.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET HPG - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị HPG trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp HPG dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp HPG trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp HPG trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị HPG thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp HPG với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp HPG thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp HPG đầu vào + string filePath = "input.hpg"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp HPG thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "HPG" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/hpg.zh.md b/content/viewer/net/hpg.zh.md new file mode 100644 index 00000000..2a603f0d --- /dev/null +++ b/content/viewer/net/hpg.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HPG Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 HPG。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 HPG 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 HPG 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 HPG 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 HPG 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 HPG 文件。 + 3. 设置选项以将 HPG 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 HPG 文件 + string filePath = "input.hpg"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 HPG 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "HPG" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/htm.de.md b/content/viewer/net/htm.de.md new file mode 100644 index 00000000..c4b29851 --- /dev/null +++ b/content/viewer/net/htm.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HTM Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von HTM in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "HTM Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von HTM-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der HTM-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie HTM in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei HTM mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei HTM im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei HTM ein + string filePath = "input.htm"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei HTM mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "HTM" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/htm.en.md b/content/viewer/net/htm.en.md new file mode 100644 index 00000000..25e2847d --- /dev/null +++ b/content/viewer/net/htm.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HTM Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display HTM in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "HTM file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display HTM file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render HTM file in C#" + content: | + With GroupDocs.Viewer you can render HTM to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the HTM file with full path. + 3. Set options to render HTM file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input HTM file + string filePath = "input.htm"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render HTM file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "HTM" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/htm.es.md b/content/viewer/net/htm.es.md new file mode 100644 index 00000000..85166c02 --- /dev/null +++ b/content/viewer/net/htm.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HTM API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar HTM en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "HTM visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos HTM en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo HTM en C#" + content: | + Con GroupDocs.Viewer puede renderizar HTM a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo HTM con la ruta completa. + 3. Configure opciones para representar el archivo HTM en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada HTM + string filePath = "input.htm"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo HTM a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "HTM" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/htm.fa.md b/content/viewer/net/htm.fa.md new file mode 100644 index 00000000..d7b926a1 --- /dev/null +++ b/content/viewer/net/htm.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HTM بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش HTM در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل HTM برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل HTM در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل HTM در C#" + content: | + با GroupDocs.Viewer می‌توانید HTM را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل HTM را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل HTM در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی HTM را تنظیم کنید + string filePath = "input.htm"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل HTM را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "HTM" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/htm.fr.md b/content/viewer/net/htm.fr.md new file mode 100644 index 00000000..ff4f64cc --- /dev/null +++ b/content/viewer/net/htm.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET HTM - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher HTM dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "HTM visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier HTM dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier HTM dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer HTM au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier HTM avec le chemin complet. + 3. Définissez les options pour restituer le fichier HTM au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée HTM + string filePath = "input.htm"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier HTM au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "HTM" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/htm.id.md b/content/viewer/net/htm.id.md new file mode 100644 index 00000000..a4b17532 --- /dev/null +++ b/content/viewer/net/htm.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HTM Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan HTM di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "HTM penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file HTM dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file HTM di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender HTM ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file HTM dengan path lengkap. + 3. Tetapkan opsi untuk merender file HTM ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan HTM + string filePath = "input.htm"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file HTM ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "HTM" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/htm.it.md b/content/viewer/net/htm.it.md new file mode 100644 index 00000000..2f3f3e06 --- /dev/null +++ b/content/viewer/net/htm.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET HTM: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare HTM in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file HTM per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file HTM in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file HTM in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di HTM in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file HTM con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file HTM nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input HTM + string filePath = "input.htm"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file HTM in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "HTM" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/htm.ja.md b/content/viewer/net/htm.ja.md new file mode 100644 index 00000000..060bbf2c --- /dev/null +++ b/content/viewer/net/htm.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HTM ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで HTM を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の HTM ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで HTM ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で HTM ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で HTM を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、HTM ファイルをフルパスでロードします。 + 3. HTM ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 HTM ファイルを設定する + string filePath = "input.htm"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた HTM ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "HTM" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/htm.ko.md b/content/viewer/net/htm.ko.md new file mode 100644 index 00000000..eab4d623 --- /dev/null +++ b/content/viewer/net/htm.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HTM 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 HTM을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 HTM 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 HTM 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 HTM 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 HTM을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 HTM 파일을 로드합니다. + 3. HTM 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 HTM 파일 설정 + string filePath = "input.htm"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 HTM 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "HTM" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/htm.pt.md b/content/viewer/net/htm.pt.md new file mode 100644 index 00000000..6e0e586f --- /dev/null +++ b/content/viewer/net/htm.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HTM API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir HTM em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos HTM para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos HTM em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo HTM em C#" + content: | + Com GroupDocs.Viewer você pode renderizar HTM para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo HTM com caminho completo. + 3. Defina opções para renderizar o arquivo HTM em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada HTM + string filePath = "input.htm"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo HTM em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "HTM" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/htm.ru.md b/content/viewer/net/htm.ru.md new file mode 100644 index 00000000..4630d0cd --- /dev/null +++ b/content/viewer/net/htm.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HTM API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения HTM в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "HTM средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла HTM в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла HTM в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать HTM в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл HTM с полным путем. + 3. Установите параметры для преобразования файла HTM в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл HTM + string filePath = "input.htm"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл HTM в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "HTM" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/htm.th.md b/content/viewer/net/htm.th.md new file mode 100644 index 00000000..1263e6df --- /dev/null +++ b/content/viewer/net/htm.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HTM Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง HTM ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ HTM สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ HTM ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ HTM ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล HTM เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ HTM ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ HTM เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต HTM + string filePath = "input.htm"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ HTM เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "HTM" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/htm.uk.md b/content/viewer/net/htm.uk.md new file mode 100644 index 00000000..2d1970eb --- /dev/null +++ b/content/viewer/net/htm.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HTM Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення HTM у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів HTM для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу HTM у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу HTM у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити HTM у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл HTM із повним шляхом. + 3. Встановіть параметри для перетворення файлу HTM у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл HTM + string filePath = "input.htm"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл HTM у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "HTM" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/htm.vi.md b/content/viewer/net/htm.vi.md new file mode 100644 index 00000000..adbd2155 --- /dev/null +++ b/content/viewer/net/htm.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET HTM - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị HTM trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp HTM dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp HTM trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp HTM trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị HTM thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp HTM với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp HTM thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp HTM đầu vào + string filePath = "input.htm"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp HTM thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "HTM" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/htm.zh.md b/content/viewer/net/htm.zh.md new file mode 100644 index 00000000..0d2bf952 --- /dev/null +++ b/content/viewer/net/htm.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HTM Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 HTM。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 HTM 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 HTM 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 HTM 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 HTM 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 HTM 文件。 + 3. 设置选项以将 HTM 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 HTM 文件 + string filePath = "input.htm"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 HTM 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "HTM" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/html.de.md b/content/viewer/net/html.de.md new file mode 100644 index 00000000..72f11343 --- /dev/null +++ b/content/viewer/net/html.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HTML Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von HTML in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "HTML Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von HTML-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der HTML-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie HTML in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei HTML mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei HTML im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei HTML ein + string filePath = "input.html"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei HTML mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "HTML" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/html.en.md b/content/viewer/net/html.en.md new file mode 100644 index 00000000..0f195263 --- /dev/null +++ b/content/viewer/net/html.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HTML Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display HTML in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "HTML file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display HTML file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render HTML file in C#" + content: | + With GroupDocs.Viewer you can render HTML to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the HTML file with full path. + 3. Set options to render HTML file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input HTML file + string filePath = "input.html"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render HTML file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "HTML" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/html.es.md b/content/viewer/net/html.es.md new file mode 100644 index 00000000..14df29a3 --- /dev/null +++ b/content/viewer/net/html.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HTML API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar HTML en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "HTML visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos HTML en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo HTML en C#" + content: | + Con GroupDocs.Viewer puede renderizar HTML a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo HTML con la ruta completa. + 3. Configure opciones para representar el archivo HTML en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada HTML + string filePath = "input.html"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo HTML a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "HTML" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/html.fa.md b/content/viewer/net/html.fa.md new file mode 100644 index 00000000..e477a99d --- /dev/null +++ b/content/viewer/net/html.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HTML بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش HTML در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل HTML برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل HTML در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل HTML در C#" + content: | + با GroupDocs.Viewer می‌توانید HTML را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل HTML را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل HTML در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی HTML را تنظیم کنید + string filePath = "input.html"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل HTML را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "HTML" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/html.fr.md b/content/viewer/net/html.fr.md new file mode 100644 index 00000000..5251bb08 --- /dev/null +++ b/content/viewer/net/html.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET HTML - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher HTML dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "HTML visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier HTML dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier HTML dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer HTML au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier HTML avec le chemin complet. + 3. Définissez les options pour restituer le fichier HTML au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée HTML + string filePath = "input.html"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier HTML au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "HTML" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/html.id.md b/content/viewer/net/html.id.md new file mode 100644 index 00000000..45a398f8 --- /dev/null +++ b/content/viewer/net/html.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HTML Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan HTML di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "HTML penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file HTML dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file HTML di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender HTML ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file HTML dengan path lengkap. + 3. Tetapkan opsi untuk merender file HTML ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan HTML + string filePath = "input.html"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file HTML ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "HTML" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/html.it.md b/content/viewer/net/html.it.md new file mode 100644 index 00000000..670c44f7 --- /dev/null +++ b/content/viewer/net/html.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET HTML: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare HTML in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file HTML per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file HTML in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file HTML in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di HTML in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file HTML con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file HTML nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input HTML + string filePath = "input.html"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file HTML in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "HTML" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/html.ja.md b/content/viewer/net/html.ja.md new file mode 100644 index 00000000..319ec147 --- /dev/null +++ b/content/viewer/net/html.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HTML ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで HTML を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の HTML ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで HTML ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で HTML ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で HTML を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、HTML ファイルをフルパスでロードします。 + 3. HTML ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 HTML ファイルを設定する + string filePath = "input.html"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた HTML ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "HTML" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/html.ko.md b/content/viewer/net/html.ko.md new file mode 100644 index 00000000..83ec2dcc --- /dev/null +++ b/content/viewer/net/html.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HTML 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 HTML을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 HTML 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 HTML 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 HTML 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 HTML을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 HTML 파일을 로드합니다. + 3. HTML 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 HTML 파일 설정 + string filePath = "input.html"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 HTML 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "HTML" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/html.pt.md b/content/viewer/net/html.pt.md new file mode 100644 index 00000000..1d191551 --- /dev/null +++ b/content/viewer/net/html.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HTML API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir HTML em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos HTML para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos HTML em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo HTML em C#" + content: | + Com GroupDocs.Viewer você pode renderizar HTML para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo HTML com caminho completo. + 3. Defina opções para renderizar o arquivo HTML em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada HTML + string filePath = "input.html"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo HTML em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "HTML" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/html.ru.md b/content/viewer/net/html.ru.md new file mode 100644 index 00000000..7f69e683 --- /dev/null +++ b/content/viewer/net/html.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HTML API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения HTML в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "HTML средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла HTML в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла HTML в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать HTML в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл HTML с полным путем. + 3. Установите параметры для преобразования файла HTML в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл HTML + string filePath = "input.html"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл HTML в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "HTML" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/html.th.md b/content/viewer/net/html.th.md new file mode 100644 index 00000000..6d11c4ab --- /dev/null +++ b/content/viewer/net/html.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HTML Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง HTML ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ HTML สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ HTML ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ HTML ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล HTML เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ HTML ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ HTML เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต HTML + string filePath = "input.html"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ HTML เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "HTML" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/html.uk.md b/content/viewer/net/html.uk.md new file mode 100644 index 00000000..f1047404 --- /dev/null +++ b/content/viewer/net/html.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HTML Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення HTML у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів HTML для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу HTML у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу HTML у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити HTML у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл HTML із повним шляхом. + 3. Встановіть параметри для перетворення файлу HTML у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл HTML + string filePath = "input.html"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл HTML у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "HTML" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/html.vi.md b/content/viewer/net/html.vi.md new file mode 100644 index 00000000..b5232d09 --- /dev/null +++ b/content/viewer/net/html.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET HTML - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị HTML trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp HTML dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp HTML trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp HTML trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị HTML thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp HTML với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp HTML thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp HTML đầu vào + string filePath = "input.html"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp HTML thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "HTML" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/html.zh.md b/content/viewer/net/html.zh.md new file mode 100644 index 00000000..03c7b568 --- /dev/null +++ b/content/viewer/net/html.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET HTML Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 HTML。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 HTML 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 HTML 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 HTML 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 HTML 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 HTML 文件。 + 3. 设置选项以将 HTML 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 HTML 文件 + string filePath = "input.html"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 HTML 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "HTML" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ico.de.md b/content/viewer/net/ico.de.md new file mode 100644 index 00000000..cc218704 --- /dev/null +++ b/content/viewer/net/ico.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ICO Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von ICO in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "ICO Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von ICO-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der ICO-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie ICO in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei ICO mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei ICO im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei ICO ein + string filePath = "input.ico"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei ICO mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "ICO" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ico.en.md b/content/viewer/net/ico.en.md new file mode 100644 index 00000000..e2814987 --- /dev/null +++ b/content/viewer/net/ico.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ICO Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display ICO in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "ICO file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display ICO file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render ICO file in C#" + content: | + With GroupDocs.Viewer you can render ICO to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the ICO file with full path. + 3. Set options to render ICO file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input ICO file + string filePath = "input.ico"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render ICO file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "ICO" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ico.es.md b/content/viewer/net/ico.es.md new file mode 100644 index 00000000..a4715589 --- /dev/null +++ b/content/viewer/net/ico.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ICO API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar ICO en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "ICO visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos ICO en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo ICO en C#" + content: | + Con GroupDocs.Viewer puede renderizar ICO a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo ICO con la ruta completa. + 3. Configure opciones para representar el archivo ICO en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada ICO + string filePath = "input.ico"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo ICO a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "ICO" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ico.fa.md b/content/viewer/net/ico.fa.md new file mode 100644 index 00000000..31034174 --- /dev/null +++ b/content/viewer/net/ico.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ICO بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش ICO در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل ICO برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل ICO در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل ICO در C#" + content: | + با GroupDocs.Viewer می‌توانید ICO را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل ICO را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل ICO در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی ICO را تنظیم کنید + string filePath = "input.ico"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل ICO را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "ICO" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ico.fr.md b/content/viewer/net/ico.fr.md new file mode 100644 index 00000000..be998a58 --- /dev/null +++ b/content/viewer/net/ico.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET ICO - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher ICO dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "ICO visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier ICO dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier ICO dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer ICO au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier ICO avec le chemin complet. + 3. Définissez les options pour restituer le fichier ICO au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée ICO + string filePath = "input.ico"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier ICO au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "ICO" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ico.id.md b/content/viewer/net/ico.id.md new file mode 100644 index 00000000..031bdf3e --- /dev/null +++ b/content/viewer/net/ico.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ICO Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan ICO di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "ICO penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file ICO dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file ICO di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender ICO ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file ICO dengan path lengkap. + 3. Tetapkan opsi untuk merender file ICO ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan ICO + string filePath = "input.ico"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file ICO ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "ICO" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ico.it.md b/content/viewer/net/ico.it.md new file mode 100644 index 00000000..8d19753a --- /dev/null +++ b/content/viewer/net/ico.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET ICO: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare ICO in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file ICO per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file ICO in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file ICO in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di ICO in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file ICO con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file ICO nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input ICO + string filePath = "input.ico"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file ICO in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "ICO" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ico.ja.md b/content/viewer/net/ico.ja.md new file mode 100644 index 00000000..2d18e214 --- /dev/null +++ b/content/viewer/net/ico.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ICO ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで ICO を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の ICO ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで ICO ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で ICO ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で ICO を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、ICO ファイルをフルパスでロードします。 + 3. ICO ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 ICO ファイルを設定する + string filePath = "input.ico"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた ICO ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "ICO" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ico.ko.md b/content/viewer/net/ico.ko.md new file mode 100644 index 00000000..5f7dfe67 --- /dev/null +++ b/content/viewer/net/ico.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ICO 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 ICO을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 ICO 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 ICO 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 ICO 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 ICO을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 ICO 파일을 로드합니다. + 3. ICO 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 ICO 파일 설정 + string filePath = "input.ico"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 ICO 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "ICO" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ico.pt.md b/content/viewer/net/ico.pt.md new file mode 100644 index 00000000..96717e22 --- /dev/null +++ b/content/viewer/net/ico.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ICO API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir ICO em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos ICO para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos ICO em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo ICO em C#" + content: | + Com GroupDocs.Viewer você pode renderizar ICO para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo ICO com caminho completo. + 3. Defina opções para renderizar o arquivo ICO em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada ICO + string filePath = "input.ico"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo ICO em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "ICO" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ico.ru.md b/content/viewer/net/ico.ru.md new file mode 100644 index 00000000..0a3fd007 --- /dev/null +++ b/content/viewer/net/ico.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ICO API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения ICO в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "ICO средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла ICO в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла ICO в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать ICO в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл ICO с полным путем. + 3. Установите параметры для преобразования файла ICO в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл ICO + string filePath = "input.ico"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл ICO в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "ICO" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ico.th.md b/content/viewer/net/ico.th.md new file mode 100644 index 00000000..fa83e8e0 --- /dev/null +++ b/content/viewer/net/ico.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ICO Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง ICO ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ ICO สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ ICO ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ ICO ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล ICO เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ ICO ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ ICO เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต ICO + string filePath = "input.ico"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ ICO เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "ICO" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ico.uk.md b/content/viewer/net/ico.uk.md new file mode 100644 index 00000000..85e735e4 --- /dev/null +++ b/content/viewer/net/ico.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ICO Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення ICO у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів ICO для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу ICO у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу ICO у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити ICO у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл ICO із повним шляхом. + 3. Встановіть параметри для перетворення файлу ICO у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл ICO + string filePath = "input.ico"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл ICO у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "ICO" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ico.vi.md b/content/viewer/net/ico.vi.md new file mode 100644 index 00000000..feb4dcb1 --- /dev/null +++ b/content/viewer/net/ico.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET ICO - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị ICO trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp ICO dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp ICO trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp ICO trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị ICO thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp ICO với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp ICO thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp ICO đầu vào + string filePath = "input.ico"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp ICO thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "ICO" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ico.zh.md b/content/viewer/net/ico.zh.md new file mode 100644 index 00000000..9cb6d68e --- /dev/null +++ b/content/viewer/net/ico.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ICO Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 ICO。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 ICO 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 ICO 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 ICO 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 ICO 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 ICO 文件。 + 3. 设置选项以将 ICO 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 ICO 文件 + string filePath = "input.ico"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 ICO 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "ICO" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ifc.de.md b/content/viewer/net/ifc.de.md new file mode 100644 index 00000000..adb8ca14 --- /dev/null +++ b/content/viewer/net/ifc.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET IFC Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von IFC in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "IFC Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von IFC-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der IFC-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie IFC in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei IFC mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei IFC im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei IFC ein + string filePath = "input.ifc"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei IFC mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "IFC" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ifc.en.md b/content/viewer/net/ifc.en.md new file mode 100644 index 00000000..9eb1d0d1 --- /dev/null +++ b/content/viewer/net/ifc.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET IFC Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display IFC in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "IFC file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display IFC file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render IFC file in C#" + content: | + With GroupDocs.Viewer you can render IFC to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the IFC file with full path. + 3. Set options to render IFC file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input IFC file + string filePath = "input.ifc"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render IFC file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "IFC" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ifc.es.md b/content/viewer/net/ifc.es.md new file mode 100644 index 00000000..c47bfe75 --- /dev/null +++ b/content/viewer/net/ifc.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET IFC API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar IFC en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "IFC visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos IFC en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo IFC en C#" + content: | + Con GroupDocs.Viewer puede renderizar IFC a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo IFC con la ruta completa. + 3. Configure opciones para representar el archivo IFC en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada IFC + string filePath = "input.ifc"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo IFC a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "IFC" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ifc.fa.md b/content/viewer/net/ifc.fa.md new file mode 100644 index 00000000..e7be2916 --- /dev/null +++ b/content/viewer/net/ifc.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET IFC بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش IFC در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل IFC برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل IFC در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل IFC در C#" + content: | + با GroupDocs.Viewer می‌توانید IFC را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل IFC را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل IFC در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی IFC را تنظیم کنید + string filePath = "input.ifc"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل IFC را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "IFC" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ifc.fr.md b/content/viewer/net/ifc.fr.md new file mode 100644 index 00000000..914eef52 --- /dev/null +++ b/content/viewer/net/ifc.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET IFC - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher IFC dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "IFC visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier IFC dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier IFC dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer IFC au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier IFC avec le chemin complet. + 3. Définissez les options pour restituer le fichier IFC au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée IFC + string filePath = "input.ifc"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier IFC au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "IFC" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ifc.id.md b/content/viewer/net/ifc.id.md new file mode 100644 index 00000000..df5b4dc3 --- /dev/null +++ b/content/viewer/net/ifc.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET IFC Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan IFC di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "IFC penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file IFC dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file IFC di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender IFC ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file IFC dengan path lengkap. + 3. Tetapkan opsi untuk merender file IFC ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan IFC + string filePath = "input.ifc"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file IFC ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "IFC" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ifc.it.md b/content/viewer/net/ifc.it.md new file mode 100644 index 00000000..301672e2 --- /dev/null +++ b/content/viewer/net/ifc.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET IFC: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare IFC in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file IFC per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file IFC in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file IFC in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di IFC in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file IFC con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file IFC nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input IFC + string filePath = "input.ifc"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file IFC in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "IFC" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ifc.ja.md b/content/viewer/net/ifc.ja.md new file mode 100644 index 00000000..b561bfeb --- /dev/null +++ b/content/viewer/net/ifc.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET IFC ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで IFC を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の IFC ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで IFC ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で IFC ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で IFC を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、IFC ファイルをフルパスでロードします。 + 3. IFC ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 IFC ファイルを設定する + string filePath = "input.ifc"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた IFC ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "IFC" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ifc.ko.md b/content/viewer/net/ifc.ko.md new file mode 100644 index 00000000..e5a1f98f --- /dev/null +++ b/content/viewer/net/ifc.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET IFC 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 IFC을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 IFC 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 IFC 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 IFC 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 IFC을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 IFC 파일을 로드합니다. + 3. IFC 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 IFC 파일 설정 + string filePath = "input.ifc"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 IFC 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "IFC" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ifc.pt.md b/content/viewer/net/ifc.pt.md new file mode 100644 index 00000000..76034109 --- /dev/null +++ b/content/viewer/net/ifc.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET IFC API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir IFC em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos IFC para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos IFC em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo IFC em C#" + content: | + Com GroupDocs.Viewer você pode renderizar IFC para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo IFC com caminho completo. + 3. Defina opções para renderizar o arquivo IFC em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada IFC + string filePath = "input.ifc"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo IFC em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "IFC" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ifc.ru.md b/content/viewer/net/ifc.ru.md new file mode 100644 index 00000000..2699c1fb --- /dev/null +++ b/content/viewer/net/ifc.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET IFC API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения IFC в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "IFC средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла IFC в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла IFC в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать IFC в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл IFC с полным путем. + 3. Установите параметры для преобразования файла IFC в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл IFC + string filePath = "input.ifc"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл IFC в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "IFC" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ifc.th.md b/content/viewer/net/ifc.th.md new file mode 100644 index 00000000..45456983 --- /dev/null +++ b/content/viewer/net/ifc.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET IFC Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง IFC ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ IFC สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ IFC ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ IFC ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล IFC เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ IFC ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ IFC เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต IFC + string filePath = "input.ifc"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ IFC เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "IFC" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ifc.uk.md b/content/viewer/net/ifc.uk.md new file mode 100644 index 00000000..30a42e8d --- /dev/null +++ b/content/viewer/net/ifc.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET IFC Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення IFC у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів IFC для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу IFC у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу IFC у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити IFC у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл IFC із повним шляхом. + 3. Встановіть параметри для перетворення файлу IFC у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл IFC + string filePath = "input.ifc"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл IFC у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "IFC" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ifc.vi.md b/content/viewer/net/ifc.vi.md new file mode 100644 index 00000000..8086ce60 --- /dev/null +++ b/content/viewer/net/ifc.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET IFC - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị IFC trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp IFC dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp IFC trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp IFC trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị IFC thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp IFC với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp IFC thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp IFC đầu vào + string filePath = "input.ifc"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp IFC thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "IFC" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ifc.zh.md b/content/viewer/net/ifc.zh.md new file mode 100644 index 00000000..89cfacac --- /dev/null +++ b/content/viewer/net/ifc.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET IFC Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 IFC。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 IFC 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 IFC 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 IFC 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 IFC 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 IFC 文件。 + 3. 设置选项以将 IFC 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 IFC 文件 + string filePath = "input.ifc"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 IFC 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "IFC" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/igs.de.md b/content/viewer/net/igs.de.md new file mode 100644 index 00000000..b24b13ac --- /dev/null +++ b/content/viewer/net/igs.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET IGS Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von IGS in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "IGS Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von IGS-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der IGS-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie IGS in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei IGS mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei IGS im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei IGS ein + string filePath = "input.igs"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei IGS mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "IGS" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/igs.en.md b/content/viewer/net/igs.en.md new file mode 100644 index 00000000..ffe9b20e --- /dev/null +++ b/content/viewer/net/igs.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET IGS Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display IGS in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "IGS file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display IGS file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render IGS file in C#" + content: | + With GroupDocs.Viewer you can render IGS to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the IGS file with full path. + 3. Set options to render IGS file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input IGS file + string filePath = "input.igs"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render IGS file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "IGS" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/igs.es.md b/content/viewer/net/igs.es.md new file mode 100644 index 00000000..c7f856f2 --- /dev/null +++ b/content/viewer/net/igs.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET IGS API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar IGS en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "IGS visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos IGS en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo IGS en C#" + content: | + Con GroupDocs.Viewer puede renderizar IGS a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo IGS con la ruta completa. + 3. Configure opciones para representar el archivo IGS en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada IGS + string filePath = "input.igs"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo IGS a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "IGS" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/igs.fa.md b/content/viewer/net/igs.fa.md new file mode 100644 index 00000000..d44c20a0 --- /dev/null +++ b/content/viewer/net/igs.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET IGS بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش IGS در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل IGS برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل IGS در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل IGS در C#" + content: | + با GroupDocs.Viewer می‌توانید IGS را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل IGS را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل IGS در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی IGS را تنظیم کنید + string filePath = "input.igs"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل IGS را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "IGS" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/igs.fr.md b/content/viewer/net/igs.fr.md new file mode 100644 index 00000000..811defec --- /dev/null +++ b/content/viewer/net/igs.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET IGS - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher IGS dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "IGS visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier IGS dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier IGS dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer IGS au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier IGS avec le chemin complet. + 3. Définissez les options pour restituer le fichier IGS au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée IGS + string filePath = "input.igs"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier IGS au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "IGS" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/igs.id.md b/content/viewer/net/igs.id.md new file mode 100644 index 00000000..746f3d16 --- /dev/null +++ b/content/viewer/net/igs.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET IGS Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan IGS di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "IGS penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file IGS dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file IGS di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender IGS ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file IGS dengan path lengkap. + 3. Tetapkan opsi untuk merender file IGS ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan IGS + string filePath = "input.igs"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file IGS ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "IGS" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/igs.it.md b/content/viewer/net/igs.it.md new file mode 100644 index 00000000..3e70e9bc --- /dev/null +++ b/content/viewer/net/igs.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET IGS: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare IGS in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file IGS per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file IGS in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file IGS in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di IGS in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file IGS con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file IGS nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input IGS + string filePath = "input.igs"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file IGS in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "IGS" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/igs.ja.md b/content/viewer/net/igs.ja.md new file mode 100644 index 00000000..176573ce --- /dev/null +++ b/content/viewer/net/igs.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET IGS ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで IGS を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の IGS ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで IGS ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で IGS ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で IGS を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、IGS ファイルをフルパスでロードします。 + 3. IGS ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 IGS ファイルを設定する + string filePath = "input.igs"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた IGS ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "IGS" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/igs.ko.md b/content/viewer/net/igs.ko.md new file mode 100644 index 00000000..0a066b80 --- /dev/null +++ b/content/viewer/net/igs.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET IGS 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 IGS을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 IGS 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 IGS 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 IGS 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 IGS을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 IGS 파일을 로드합니다. + 3. IGS 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 IGS 파일 설정 + string filePath = "input.igs"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 IGS 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "IGS" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/igs.pt.md b/content/viewer/net/igs.pt.md new file mode 100644 index 00000000..ba30e09a --- /dev/null +++ b/content/viewer/net/igs.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET IGS API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir IGS em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos IGS para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos IGS em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo IGS em C#" + content: | + Com GroupDocs.Viewer você pode renderizar IGS para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo IGS com caminho completo. + 3. Defina opções para renderizar o arquivo IGS em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada IGS + string filePath = "input.igs"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo IGS em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "IGS" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/igs.ru.md b/content/viewer/net/igs.ru.md new file mode 100644 index 00000000..002be0b5 --- /dev/null +++ b/content/viewer/net/igs.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET IGS API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения IGS в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "IGS средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла IGS в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла IGS в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать IGS в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл IGS с полным путем. + 3. Установите параметры для преобразования файла IGS в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл IGS + string filePath = "input.igs"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл IGS в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "IGS" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/igs.th.md b/content/viewer/net/igs.th.md new file mode 100644 index 00000000..22cc0b80 --- /dev/null +++ b/content/viewer/net/igs.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET IGS Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง IGS ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ IGS สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ IGS ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ IGS ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล IGS เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ IGS ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ IGS เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต IGS + string filePath = "input.igs"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ IGS เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "IGS" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/igs.uk.md b/content/viewer/net/igs.uk.md new file mode 100644 index 00000000..bccde91c --- /dev/null +++ b/content/viewer/net/igs.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET IGS Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення IGS у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів IGS для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу IGS у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу IGS у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити IGS у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл IGS із повним шляхом. + 3. Встановіть параметри для перетворення файлу IGS у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл IGS + string filePath = "input.igs"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл IGS у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "IGS" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/igs.vi.md b/content/viewer/net/igs.vi.md new file mode 100644 index 00000000..5143f5ad --- /dev/null +++ b/content/viewer/net/igs.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET IGS - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị IGS trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp IGS dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp IGS trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp IGS trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị IGS thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp IGS với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp IGS thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp IGS đầu vào + string filePath = "input.igs"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp IGS thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "IGS" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/igs.zh.md b/content/viewer/net/igs.zh.md new file mode 100644 index 00000000..e8d943c6 --- /dev/null +++ b/content/viewer/net/igs.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET IGS Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 IGS。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 IGS 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 IGS 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 IGS 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 IGS 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 IGS 文件。 + 3. 设置选项以将 IGS 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 IGS 文件 + string filePath = "input.igs"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 IGS 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "IGS" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/image.de.md b/content/viewer/net/image.de.md new file mode 100644 index 00000000..ea0d9c84 --- /dev/null +++ b/content/viewer/net/image.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Image Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von Image in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "Image Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von Image-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der Image-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie Image in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei Image mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei Image im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei Image ein + string filePath = "input.tiff"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei Image mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "Image" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/image.en.md b/content/viewer/net/image.en.md new file mode 100644 index 00000000..263134a5 --- /dev/null +++ b/content/viewer/net/image.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Image Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display Image in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "Image file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display Image file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render Image file in C#" + content: | + With GroupDocs.Viewer you can render Image to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the Image file with full path. + 3. Set options to render Image file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input Image file + string filePath = "input.tiff"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render Image file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "Image" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/image.es.md b/content/viewer/net/image.es.md new file mode 100644 index 00000000..735b01a4 --- /dev/null +++ b/content/viewer/net/image.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Image API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar Image en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "Image visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos Image en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo Image en C#" + content: | + Con GroupDocs.Viewer puede renderizar Image a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo Image con la ruta completa. + 3. Configure opciones para representar el archivo Image en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada Image + string filePath = "input.tiff"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo Image a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "Image" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/image.fa.md b/content/viewer/net/image.fa.md new file mode 100644 index 00000000..81321c86 --- /dev/null +++ b/content/viewer/net/image.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Image بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش Image در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل Image برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل Image در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل Image در C#" + content: | + با GroupDocs.Viewer می‌توانید Image را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل Image را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل Image در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی Image را تنظیم کنید + string filePath = "input.tiff"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل Image را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "Image" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/image.fr.md b/content/viewer/net/image.fr.md new file mode 100644 index 00000000..a9bc7d2b --- /dev/null +++ b/content/viewer/net/image.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET Image - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher Image dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "Image visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier Image dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier Image dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer Image au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier Image avec le chemin complet. + 3. Définissez les options pour restituer le fichier Image au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée Image + string filePath = "input.tiff"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier Image au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "Image" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/image.id.md b/content/viewer/net/image.id.md new file mode 100644 index 00000000..83664973 --- /dev/null +++ b/content/viewer/net/image.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Image Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan Image di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Image penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file Image dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file Image di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender Image ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file Image dengan path lengkap. + 3. Tetapkan opsi untuk merender file Image ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan Image + string filePath = "input.tiff"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file Image ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "Image" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/image.it.md b/content/viewer/net/image.it.md new file mode 100644 index 00000000..a1ff61a9 --- /dev/null +++ b/content/viewer/net/image.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET Image: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare Image in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file Image per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file Image in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file Image in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di Image in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file Image con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file Image nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input Image + string filePath = "input.tiff"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file Image in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "Image" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/image.ja.md b/content/viewer/net/image.ja.md new file mode 100644 index 00000000..816257bb --- /dev/null +++ b/content/viewer/net/image.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Image ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで Image を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の Image ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで Image ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で Image ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で Image を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、Image ファイルをフルパスでロードします。 + 3. Image ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 Image ファイルを設定する + string filePath = "input.tiff"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた Image ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "Image" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/image.ko.md b/content/viewer/net/image.ko.md new file mode 100644 index 00000000..17eef2db --- /dev/null +++ b/content/viewer/net/image.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Image 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 Image을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 Image 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 Image 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 Image 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 Image을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 Image 파일을 로드합니다. + 3. Image 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 Image 파일 설정 + string filePath = "input.tiff"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 Image 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "Image" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/image.pt.md b/content/viewer/net/image.pt.md new file mode 100644 index 00000000..a4ecb841 --- /dev/null +++ b/content/viewer/net/image.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Image API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir Image em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos Image para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos Image em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo Image em C#" + content: | + Com GroupDocs.Viewer você pode renderizar Image para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo Image com caminho completo. + 3. Defina opções para renderizar o arquivo Image em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada Image + string filePath = "input.tiff"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo Image em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "Image" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/image.ru.md b/content/viewer/net/image.ru.md new file mode 100644 index 00000000..d9202043 --- /dev/null +++ b/content/viewer/net/image.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Image API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения Image в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "Image средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла Image в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла Image в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать Image в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл Image с полным путем. + 3. Установите параметры для преобразования файла Image в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл Image + string filePath = "input.tiff"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл Image в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "Image" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/image.th.md b/content/viewer/net/image.th.md new file mode 100644 index 00000000..47b695a7 --- /dev/null +++ b/content/viewer/net/image.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Image Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง Image ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ Image สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ Image ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ Image ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล Image เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ Image ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ Image เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต Image + string filePath = "input.tiff"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ Image เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "Image" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/image.uk.md b/content/viewer/net/image.uk.md new file mode 100644 index 00000000..0e54a123 --- /dev/null +++ b/content/viewer/net/image.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Image Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення Image у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів Image для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу Image у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу Image у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити Image у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл Image із повним шляхом. + 3. Встановіть параметри для перетворення файлу Image у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл Image + string filePath = "input.tiff"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл Image у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "Image" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/image.vi.md b/content/viewer/net/image.vi.md new file mode 100644 index 00000000..5fdbba7d --- /dev/null +++ b/content/viewer/net/image.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET Image - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị Image trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp Image dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp Image trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp Image trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị Image thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp Image với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp Image thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp Image đầu vào + string filePath = "input.tiff"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp Image thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "Image" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/image.zh.md b/content/viewer/net/image.zh.md new file mode 100644 index 00000000..ae82311f --- /dev/null +++ b/content/viewer/net/image.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Image Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 Image。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 Image 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 Image 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 Image 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 Image 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 Image 文件。 + 3. 设置选项以将 Image 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 Image 文件 + string filePath = "input.tiff"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 Image 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "Image" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/j2c.de.md b/content/viewer/net/j2c.de.md new file mode 100644 index 00000000..dec698a2 --- /dev/null +++ b/content/viewer/net/j2c.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET J2C Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von J2C in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "J2C Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von J2C-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der J2C-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie J2C in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei J2C mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei J2C im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei J2C ein + string filePath = "input.j2c"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei J2C mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "J2C" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/j2c.en.md b/content/viewer/net/j2c.en.md new file mode 100644 index 00000000..5a73ee78 --- /dev/null +++ b/content/viewer/net/j2c.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET J2C Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display J2C in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "J2C file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display J2C file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render J2C file in C#" + content: | + With GroupDocs.Viewer you can render J2C to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the J2C file with full path. + 3. Set options to render J2C file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input J2C file + string filePath = "input.j2c"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render J2C file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "J2C" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/j2c.es.md b/content/viewer/net/j2c.es.md new file mode 100644 index 00000000..811abac7 --- /dev/null +++ b/content/viewer/net/j2c.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET J2C API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar J2C en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "J2C visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos J2C en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo J2C en C#" + content: | + Con GroupDocs.Viewer puede renderizar J2C a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo J2C con la ruta completa. + 3. Configure opciones para representar el archivo J2C en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada J2C + string filePath = "input.j2c"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo J2C a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "J2C" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/j2c.fa.md b/content/viewer/net/j2c.fa.md new file mode 100644 index 00000000..23638252 --- /dev/null +++ b/content/viewer/net/j2c.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET J2C بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش J2C در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل J2C برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل J2C در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل J2C در C#" + content: | + با GroupDocs.Viewer می‌توانید J2C را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل J2C را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل J2C در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی J2C را تنظیم کنید + string filePath = "input.j2c"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل J2C را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "J2C" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/j2c.fr.md b/content/viewer/net/j2c.fr.md new file mode 100644 index 00000000..bceb3ed5 --- /dev/null +++ b/content/viewer/net/j2c.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET J2C - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher J2C dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "J2C visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier J2C dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier J2C dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer J2C au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier J2C avec le chemin complet. + 3. Définissez les options pour restituer le fichier J2C au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée J2C + string filePath = "input.j2c"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier J2C au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "J2C" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/j2c.id.md b/content/viewer/net/j2c.id.md new file mode 100644 index 00000000..fff29138 --- /dev/null +++ b/content/viewer/net/j2c.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET J2C Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan J2C di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "J2C penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file J2C dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file J2C di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender J2C ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file J2C dengan path lengkap. + 3. Tetapkan opsi untuk merender file J2C ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan J2C + string filePath = "input.j2c"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file J2C ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "J2C" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/j2c.it.md b/content/viewer/net/j2c.it.md new file mode 100644 index 00000000..103267ec --- /dev/null +++ b/content/viewer/net/j2c.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET J2C: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare J2C in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file J2C per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file J2C in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file J2C in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di J2C in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file J2C con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file J2C nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input J2C + string filePath = "input.j2c"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file J2C in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "J2C" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/j2c.ja.md b/content/viewer/net/j2c.ja.md new file mode 100644 index 00000000..640f0948 --- /dev/null +++ b/content/viewer/net/j2c.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET J2C ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで J2C を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の J2C ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで J2C ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で J2C ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で J2C を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、J2C ファイルをフルパスでロードします。 + 3. J2C ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 J2C ファイルを設定する + string filePath = "input.j2c"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた J2C ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "J2C" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/j2c.ko.md b/content/viewer/net/j2c.ko.md new file mode 100644 index 00000000..e2bc735f --- /dev/null +++ b/content/viewer/net/j2c.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET J2C 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 J2C을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 J2C 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 J2C 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 J2C 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 J2C을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 J2C 파일을 로드합니다. + 3. J2C 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 J2C 파일 설정 + string filePath = "input.j2c"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 J2C 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "J2C" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/j2c.pt.md b/content/viewer/net/j2c.pt.md new file mode 100644 index 00000000..908b9bd9 --- /dev/null +++ b/content/viewer/net/j2c.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET J2C API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir J2C em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos J2C para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos J2C em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo J2C em C#" + content: | + Com GroupDocs.Viewer você pode renderizar J2C para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo J2C com caminho completo. + 3. Defina opções para renderizar o arquivo J2C em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada J2C + string filePath = "input.j2c"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo J2C em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "J2C" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/j2c.ru.md b/content/viewer/net/j2c.ru.md new file mode 100644 index 00000000..b1ead9a9 --- /dev/null +++ b/content/viewer/net/j2c.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET J2C API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения J2C в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "J2C средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла J2C в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла J2C в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать J2C в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл J2C с полным путем. + 3. Установите параметры для преобразования файла J2C в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл J2C + string filePath = "input.j2c"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл J2C в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "J2C" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/j2c.th.md b/content/viewer/net/j2c.th.md new file mode 100644 index 00000000..7c7e8ae2 --- /dev/null +++ b/content/viewer/net/j2c.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET J2C Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง J2C ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ J2C สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ J2C ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ J2C ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล J2C เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ J2C ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ J2C เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต J2C + string filePath = "input.j2c"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ J2C เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "J2C" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/j2c.uk.md b/content/viewer/net/j2c.uk.md new file mode 100644 index 00000000..559bda54 --- /dev/null +++ b/content/viewer/net/j2c.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET J2C Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення J2C у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів J2C для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу J2C у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу J2C у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити J2C у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл J2C із повним шляхом. + 3. Встановіть параметри для перетворення файлу J2C у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл J2C + string filePath = "input.j2c"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл J2C у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "J2C" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/j2c.vi.md b/content/viewer/net/j2c.vi.md new file mode 100644 index 00000000..8d736315 --- /dev/null +++ b/content/viewer/net/j2c.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET J2C - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị J2C trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp J2C dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp J2C trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp J2C trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị J2C thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp J2C với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp J2C thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp J2C đầu vào + string filePath = "input.j2c"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp J2C thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "J2C" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/j2c.zh.md b/content/viewer/net/j2c.zh.md new file mode 100644 index 00000000..1388b72d --- /dev/null +++ b/content/viewer/net/j2c.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET J2C Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 J2C。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 J2C 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 J2C 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 J2C 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 J2C 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 J2C 文件。 + 3. 设置选项以将 J2C 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 J2C 文件 + string filePath = "input.j2c"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 J2C 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "J2C" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/j2k.de.md b/content/viewer/net/j2k.de.md new file mode 100644 index 00000000..5d941088 --- /dev/null +++ b/content/viewer/net/j2k.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET J2K Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von J2K in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "J2K Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von J2K-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der J2K-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie J2K in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei J2K mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei J2K im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei J2K ein + string filePath = "input.j2k"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei J2K mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "J2K" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/j2k.en.md b/content/viewer/net/j2k.en.md new file mode 100644 index 00000000..3060bbca --- /dev/null +++ b/content/viewer/net/j2k.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET J2K Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display J2K in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "J2K file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display J2K file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render J2K file in C#" + content: | + With GroupDocs.Viewer you can render J2K to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the J2K file with full path. + 3. Set options to render J2K file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input J2K file + string filePath = "input.j2k"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render J2K file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "J2K" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/j2k.es.md b/content/viewer/net/j2k.es.md new file mode 100644 index 00000000..a5a89955 --- /dev/null +++ b/content/viewer/net/j2k.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET J2K API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar J2K en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "J2K visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos J2K en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo J2K en C#" + content: | + Con GroupDocs.Viewer puede renderizar J2K a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo J2K con la ruta completa. + 3. Configure opciones para representar el archivo J2K en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada J2K + string filePath = "input.j2k"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo J2K a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "J2K" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/j2k.fa.md b/content/viewer/net/j2k.fa.md new file mode 100644 index 00000000..338541d3 --- /dev/null +++ b/content/viewer/net/j2k.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET J2K بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش J2K در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل J2K برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل J2K در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل J2K در C#" + content: | + با GroupDocs.Viewer می‌توانید J2K را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل J2K را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل J2K در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی J2K را تنظیم کنید + string filePath = "input.j2k"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل J2K را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "J2K" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/j2k.fr.md b/content/viewer/net/j2k.fr.md new file mode 100644 index 00000000..9f4f4362 --- /dev/null +++ b/content/viewer/net/j2k.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET J2K - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher J2K dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "J2K visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier J2K dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier J2K dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer J2K au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier J2K avec le chemin complet. + 3. Définissez les options pour restituer le fichier J2K au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée J2K + string filePath = "input.j2k"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier J2K au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "J2K" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/j2k.id.md b/content/viewer/net/j2k.id.md new file mode 100644 index 00000000..3d7bbc06 --- /dev/null +++ b/content/viewer/net/j2k.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET J2K Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan J2K di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "J2K penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file J2K dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file J2K di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender J2K ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file J2K dengan path lengkap. + 3. Tetapkan opsi untuk merender file J2K ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan J2K + string filePath = "input.j2k"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file J2K ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "J2K" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/j2k.it.md b/content/viewer/net/j2k.it.md new file mode 100644 index 00000000..8d83a38a --- /dev/null +++ b/content/viewer/net/j2k.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET J2K: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare J2K in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file J2K per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file J2K in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file J2K in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di J2K in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file J2K con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file J2K nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input J2K + string filePath = "input.j2k"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file J2K in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "J2K" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/j2k.ja.md b/content/viewer/net/j2k.ja.md new file mode 100644 index 00000000..b29fb405 --- /dev/null +++ b/content/viewer/net/j2k.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET J2K ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで J2K を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の J2K ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで J2K ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で J2K ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で J2K を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、J2K ファイルをフルパスでロードします。 + 3. J2K ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 J2K ファイルを設定する + string filePath = "input.j2k"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた J2K ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "J2K" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/j2k.ko.md b/content/viewer/net/j2k.ko.md new file mode 100644 index 00000000..f370bf7f --- /dev/null +++ b/content/viewer/net/j2k.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET J2K 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 J2K을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 J2K 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 J2K 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 J2K 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 J2K을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 J2K 파일을 로드합니다. + 3. J2K 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 J2K 파일 설정 + string filePath = "input.j2k"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 J2K 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "J2K" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/j2k.pt.md b/content/viewer/net/j2k.pt.md new file mode 100644 index 00000000..23f69bb5 --- /dev/null +++ b/content/viewer/net/j2k.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET J2K API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir J2K em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos J2K para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos J2K em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo J2K em C#" + content: | + Com GroupDocs.Viewer você pode renderizar J2K para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo J2K com caminho completo. + 3. Defina opções para renderizar o arquivo J2K em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada J2K + string filePath = "input.j2k"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo J2K em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "J2K" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/j2k.ru.md b/content/viewer/net/j2k.ru.md new file mode 100644 index 00000000..bb71c186 --- /dev/null +++ b/content/viewer/net/j2k.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET J2K API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения J2K в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "J2K средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла J2K в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла J2K в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать J2K в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл J2K с полным путем. + 3. Установите параметры для преобразования файла J2K в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл J2K + string filePath = "input.j2k"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл J2K в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "J2K" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/j2k.th.md b/content/viewer/net/j2k.th.md new file mode 100644 index 00000000..4ec19335 --- /dev/null +++ b/content/viewer/net/j2k.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET J2K Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง J2K ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ J2K สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ J2K ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ J2K ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล J2K เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ J2K ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ J2K เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต J2K + string filePath = "input.j2k"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ J2K เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "J2K" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/j2k.uk.md b/content/viewer/net/j2k.uk.md new file mode 100644 index 00000000..c5b05bb6 --- /dev/null +++ b/content/viewer/net/j2k.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET J2K Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення J2K у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів J2K для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу J2K у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу J2K у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити J2K у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл J2K із повним шляхом. + 3. Встановіть параметри для перетворення файлу J2K у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл J2K + string filePath = "input.j2k"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл J2K у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "J2K" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/j2k.vi.md b/content/viewer/net/j2k.vi.md new file mode 100644 index 00000000..c0a7dece --- /dev/null +++ b/content/viewer/net/j2k.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET J2K - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị J2K trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp J2K dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp J2K trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp J2K trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị J2K thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp J2K với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp J2K thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp J2K đầu vào + string filePath = "input.j2k"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp J2K thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "J2K" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/j2k.zh.md b/content/viewer/net/j2k.zh.md new file mode 100644 index 00000000..c19146e2 --- /dev/null +++ b/content/viewer/net/j2k.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET J2K Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 J2K。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 J2K 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 J2K 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 J2K 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 J2K 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 J2K 文件。 + 3. 设置选项以将 J2K 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 J2K 文件 + string filePath = "input.j2k"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 J2K 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "J2K" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/java.de.md b/content/viewer/net/java.de.md new file mode 100644 index 00000000..c33d2338 --- /dev/null +++ b/content/viewer/net/java.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JAVA Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von JAVA in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "JAVA Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von JAVA-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der JAVA-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie JAVA in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei JAVA mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei JAVA im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei JAVA ein + string filePath = "input.java"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei JAVA mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "JAVA" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/java.en.md b/content/viewer/net/java.en.md new file mode 100644 index 00000000..55963778 --- /dev/null +++ b/content/viewer/net/java.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JAVA Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display JAVA in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "JAVA file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display JAVA file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render JAVA file in C#" + content: | + With GroupDocs.Viewer you can render JAVA to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the JAVA file with full path. + 3. Set options to render JAVA file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input JAVA file + string filePath = "input.java"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render JAVA file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "JAVA" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/java.es.md b/content/viewer/net/java.es.md new file mode 100644 index 00000000..6dfc6f35 --- /dev/null +++ b/content/viewer/net/java.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JAVA API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar JAVA en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "JAVA visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos JAVA en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo JAVA en C#" + content: | + Con GroupDocs.Viewer puede renderizar JAVA a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo JAVA con la ruta completa. + 3. Configure opciones para representar el archivo JAVA en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada JAVA + string filePath = "input.java"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo JAVA a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "JAVA" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/java.fa.md b/content/viewer/net/java.fa.md new file mode 100644 index 00000000..752bb064 --- /dev/null +++ b/content/viewer/net/java.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JAVA بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش JAVA در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل JAVA برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل JAVA در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل JAVA در C#" + content: | + با GroupDocs.Viewer می‌توانید JAVA را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل JAVA را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل JAVA در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی JAVA را تنظیم کنید + string filePath = "input.java"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل JAVA را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "JAVA" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/java.fr.md b/content/viewer/net/java.fr.md new file mode 100644 index 00000000..017ec1a7 --- /dev/null +++ b/content/viewer/net/java.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET JAVA - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher JAVA dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "JAVA visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier JAVA dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier JAVA dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer JAVA au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier JAVA avec le chemin complet. + 3. Définissez les options pour restituer le fichier JAVA au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée JAVA + string filePath = "input.java"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier JAVA au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "JAVA" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/java.id.md b/content/viewer/net/java.id.md new file mode 100644 index 00000000..60ba21b5 --- /dev/null +++ b/content/viewer/net/java.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JAVA Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan JAVA di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "JAVA penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file JAVA dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file JAVA di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender JAVA ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file JAVA dengan path lengkap. + 3. Tetapkan opsi untuk merender file JAVA ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan JAVA + string filePath = "input.java"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file JAVA ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "JAVA" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/java.it.md b/content/viewer/net/java.it.md new file mode 100644 index 00000000..6d1dc258 --- /dev/null +++ b/content/viewer/net/java.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET JAVA: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare JAVA in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file JAVA per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file JAVA in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file JAVA in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di JAVA in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file JAVA con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file JAVA nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input JAVA + string filePath = "input.java"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file JAVA in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "JAVA" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/java.ja.md b/content/viewer/net/java.ja.md new file mode 100644 index 00000000..5b2a400a --- /dev/null +++ b/content/viewer/net/java.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JAVA ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで JAVA を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の JAVA ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで JAVA ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で JAVA ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で JAVA を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、JAVA ファイルをフルパスでロードします。 + 3. JAVA ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 JAVA ファイルを設定する + string filePath = "input.java"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた JAVA ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "JAVA" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/java.ko.md b/content/viewer/net/java.ko.md new file mode 100644 index 00000000..6bdd6ed1 --- /dev/null +++ b/content/viewer/net/java.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JAVA 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 JAVA을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 JAVA 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 JAVA 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 JAVA 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 JAVA을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 JAVA 파일을 로드합니다. + 3. JAVA 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 JAVA 파일 설정 + string filePath = "input.java"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 JAVA 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "JAVA" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/java.pt.md b/content/viewer/net/java.pt.md new file mode 100644 index 00000000..6aeef3be --- /dev/null +++ b/content/viewer/net/java.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JAVA API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir JAVA em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos JAVA para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos JAVA em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo JAVA em C#" + content: | + Com GroupDocs.Viewer você pode renderizar JAVA para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo JAVA com caminho completo. + 3. Defina opções para renderizar o arquivo JAVA em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada JAVA + string filePath = "input.java"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo JAVA em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "JAVA" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/java.ru.md b/content/viewer/net/java.ru.md new file mode 100644 index 00000000..9217bad4 --- /dev/null +++ b/content/viewer/net/java.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JAVA API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения JAVA в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "JAVA средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла JAVA в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла JAVA в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать JAVA в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл JAVA с полным путем. + 3. Установите параметры для преобразования файла JAVA в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл JAVA + string filePath = "input.java"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл JAVA в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "JAVA" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/java.th.md b/content/viewer/net/java.th.md new file mode 100644 index 00000000..c9421cd1 --- /dev/null +++ b/content/viewer/net/java.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JAVA Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง JAVA ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ JAVA สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ JAVA ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ JAVA ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล JAVA เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ JAVA ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ JAVA เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต JAVA + string filePath = "input.java"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ JAVA เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "JAVA" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/java.uk.md b/content/viewer/net/java.uk.md new file mode 100644 index 00000000..316707f4 --- /dev/null +++ b/content/viewer/net/java.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JAVA Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення JAVA у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів JAVA для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу JAVA у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу JAVA у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити JAVA у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл JAVA із повним шляхом. + 3. Встановіть параметри для перетворення файлу JAVA у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл JAVA + string filePath = "input.java"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл JAVA у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "JAVA" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/java.vi.md b/content/viewer/net/java.vi.md new file mode 100644 index 00000000..934e2052 --- /dev/null +++ b/content/viewer/net/java.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET JAVA - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị JAVA trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp JAVA dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp JAVA trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp JAVA trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị JAVA thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp JAVA với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp JAVA thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp JAVA đầu vào + string filePath = "input.java"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp JAVA thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "JAVA" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/java.zh.md b/content/viewer/net/java.zh.md new file mode 100644 index 00000000..42a14cf4 --- /dev/null +++ b/content/viewer/net/java.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JAVA Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 JAVA。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 JAVA 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 JAVA 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 JAVA 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 JAVA 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 JAVA 文件。 + 3. 设置选项以将 JAVA 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 JAVA 文件 + string filePath = "input.java"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 JAVA 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "JAVA" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jls.de.md b/content/viewer/net/jls.de.md new file mode 100644 index 00000000..e79a51d1 --- /dev/null +++ b/content/viewer/net/jls.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JLS Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von JLS in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "JLS Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von JLS-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der JLS-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie JLS in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei JLS mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei JLS im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei JLS ein + string filePath = "input.jls"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei JLS mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "JLS" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jls.en.md b/content/viewer/net/jls.en.md new file mode 100644 index 00000000..e59078f6 --- /dev/null +++ b/content/viewer/net/jls.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JLS Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display JLS in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "JLS file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display JLS file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render JLS file in C#" + content: | + With GroupDocs.Viewer you can render JLS to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the JLS file with full path. + 3. Set options to render JLS file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input JLS file + string filePath = "input.jls"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render JLS file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "JLS" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jls.es.md b/content/viewer/net/jls.es.md new file mode 100644 index 00000000..704bf679 --- /dev/null +++ b/content/viewer/net/jls.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JLS API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar JLS en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "JLS visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos JLS en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo JLS en C#" + content: | + Con GroupDocs.Viewer puede renderizar JLS a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo JLS con la ruta completa. + 3. Configure opciones para representar el archivo JLS en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada JLS + string filePath = "input.jls"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo JLS a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "JLS" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jls.fa.md b/content/viewer/net/jls.fa.md new file mode 100644 index 00000000..ff807d4a --- /dev/null +++ b/content/viewer/net/jls.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JLS بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش JLS در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل JLS برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل JLS در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل JLS در C#" + content: | + با GroupDocs.Viewer می‌توانید JLS را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل JLS را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل JLS در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی JLS را تنظیم کنید + string filePath = "input.jls"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل JLS را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "JLS" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jls.fr.md b/content/viewer/net/jls.fr.md new file mode 100644 index 00000000..f2071701 --- /dev/null +++ b/content/viewer/net/jls.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET JLS - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher JLS dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "JLS visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier JLS dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier JLS dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer JLS au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier JLS avec le chemin complet. + 3. Définissez les options pour restituer le fichier JLS au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée JLS + string filePath = "input.jls"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier JLS au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "JLS" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jls.id.md b/content/viewer/net/jls.id.md new file mode 100644 index 00000000..db5a196f --- /dev/null +++ b/content/viewer/net/jls.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JLS Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan JLS di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "JLS penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file JLS dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file JLS di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender JLS ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file JLS dengan path lengkap. + 3. Tetapkan opsi untuk merender file JLS ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan JLS + string filePath = "input.jls"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file JLS ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "JLS" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jls.it.md b/content/viewer/net/jls.it.md new file mode 100644 index 00000000..cfeef42a --- /dev/null +++ b/content/viewer/net/jls.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET JLS: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare JLS in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file JLS per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file JLS in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file JLS in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di JLS in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file JLS con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file JLS nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input JLS + string filePath = "input.jls"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file JLS in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "JLS" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jls.ja.md b/content/viewer/net/jls.ja.md new file mode 100644 index 00000000..65efae3f --- /dev/null +++ b/content/viewer/net/jls.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JLS ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで JLS を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の JLS ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで JLS ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で JLS ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で JLS を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、JLS ファイルをフルパスでロードします。 + 3. JLS ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 JLS ファイルを設定する + string filePath = "input.jls"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた JLS ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "JLS" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jls.ko.md b/content/viewer/net/jls.ko.md new file mode 100644 index 00000000..d009cbac --- /dev/null +++ b/content/viewer/net/jls.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JLS 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 JLS을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 JLS 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 JLS 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 JLS 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 JLS을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 JLS 파일을 로드합니다. + 3. JLS 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 JLS 파일 설정 + string filePath = "input.jls"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 JLS 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "JLS" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jls.pt.md b/content/viewer/net/jls.pt.md new file mode 100644 index 00000000..292a0e0b --- /dev/null +++ b/content/viewer/net/jls.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JLS API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir JLS em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos JLS para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos JLS em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo JLS em C#" + content: | + Com GroupDocs.Viewer você pode renderizar JLS para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo JLS com caminho completo. + 3. Defina opções para renderizar o arquivo JLS em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada JLS + string filePath = "input.jls"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo JLS em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "JLS" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jls.ru.md b/content/viewer/net/jls.ru.md new file mode 100644 index 00000000..3b79823d --- /dev/null +++ b/content/viewer/net/jls.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JLS API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения JLS в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "JLS средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла JLS в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла JLS в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать JLS в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл JLS с полным путем. + 3. Установите параметры для преобразования файла JLS в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл JLS + string filePath = "input.jls"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл JLS в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "JLS" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jls.th.md b/content/viewer/net/jls.th.md new file mode 100644 index 00000000..2c336058 --- /dev/null +++ b/content/viewer/net/jls.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JLS Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง JLS ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ JLS สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ JLS ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ JLS ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล JLS เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ JLS ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ JLS เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต JLS + string filePath = "input.jls"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ JLS เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "JLS" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jls.uk.md b/content/viewer/net/jls.uk.md new file mode 100644 index 00000000..536eef7f --- /dev/null +++ b/content/viewer/net/jls.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JLS Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення JLS у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів JLS для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу JLS у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу JLS у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити JLS у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл JLS із повним шляхом. + 3. Встановіть параметри для перетворення файлу JLS у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл JLS + string filePath = "input.jls"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл JLS у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "JLS" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jls.vi.md b/content/viewer/net/jls.vi.md new file mode 100644 index 00000000..32d05ed8 --- /dev/null +++ b/content/viewer/net/jls.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET JLS - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị JLS trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp JLS dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp JLS trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp JLS trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị JLS thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp JLS với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp JLS thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp JLS đầu vào + string filePath = "input.jls"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp JLS thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "JLS" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jls.zh.md b/content/viewer/net/jls.zh.md new file mode 100644 index 00000000..9c550e4b --- /dev/null +++ b/content/viewer/net/jls.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JLS Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 JLS。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 JLS 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 JLS 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 JLS 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 JLS 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 JLS 文件。 + 3. 设置选项以将 JLS 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 JLS 文件 + string filePath = "input.jls"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 JLS 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "JLS" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jp2.de.md b/content/viewer/net/jp2.de.md new file mode 100644 index 00000000..06deb22a --- /dev/null +++ b/content/viewer/net/jp2.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JP2 Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von JP2 in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "JP2 Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von JP2-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der JP2-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie JP2 in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei JP2 mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei JP2 im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei JP2 ein + string filePath = "input.jp2"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei JP2 mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "JP2" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jp2.en.md b/content/viewer/net/jp2.en.md new file mode 100644 index 00000000..56212e9d --- /dev/null +++ b/content/viewer/net/jp2.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JP2 Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display JP2 in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "JP2 file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display JP2 file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render JP2 file in C#" + content: | + With GroupDocs.Viewer you can render JP2 to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the JP2 file with full path. + 3. Set options to render JP2 file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input JP2 file + string filePath = "input.jp2"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render JP2 file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "JP2" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jp2.es.md b/content/viewer/net/jp2.es.md new file mode 100644 index 00000000..e4652235 --- /dev/null +++ b/content/viewer/net/jp2.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JP2 API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar JP2 en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "JP2 visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos JP2 en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo JP2 en C#" + content: | + Con GroupDocs.Viewer puede renderizar JP2 a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo JP2 con la ruta completa. + 3. Configure opciones para representar el archivo JP2 en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada JP2 + string filePath = "input.jp2"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo JP2 a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "JP2" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jp2.fa.md b/content/viewer/net/jp2.fa.md new file mode 100644 index 00000000..4e572a9e --- /dev/null +++ b/content/viewer/net/jp2.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JP2 بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش JP2 در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل JP2 برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل JP2 در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل JP2 در C#" + content: | + با GroupDocs.Viewer می‌توانید JP2 را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل JP2 را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل JP2 در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی JP2 را تنظیم کنید + string filePath = "input.jp2"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل JP2 را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "JP2" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jp2.fr.md b/content/viewer/net/jp2.fr.md new file mode 100644 index 00000000..fda84aa1 --- /dev/null +++ b/content/viewer/net/jp2.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET JP2 - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher JP2 dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "JP2 visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier JP2 dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier JP2 dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer JP2 au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier JP2 avec le chemin complet. + 3. Définissez les options pour restituer le fichier JP2 au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée JP2 + string filePath = "input.jp2"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier JP2 au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "JP2" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jp2.id.md b/content/viewer/net/jp2.id.md new file mode 100644 index 00000000..c88f7a12 --- /dev/null +++ b/content/viewer/net/jp2.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JP2 Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan JP2 di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "JP2 penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file JP2 dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file JP2 di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender JP2 ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file JP2 dengan path lengkap. + 3. Tetapkan opsi untuk merender file JP2 ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan JP2 + string filePath = "input.jp2"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file JP2 ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "JP2" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jp2.it.md b/content/viewer/net/jp2.it.md new file mode 100644 index 00000000..44b49c2e --- /dev/null +++ b/content/viewer/net/jp2.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET JP2: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare JP2 in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file JP2 per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file JP2 in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file JP2 in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di JP2 in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file JP2 con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file JP2 nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input JP2 + string filePath = "input.jp2"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file JP2 in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "JP2" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jp2.ja.md b/content/viewer/net/jp2.ja.md new file mode 100644 index 00000000..1d5b5311 --- /dev/null +++ b/content/viewer/net/jp2.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JP2 ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで JP2 を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の JP2 ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで JP2 ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で JP2 ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で JP2 を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、JP2 ファイルをフルパスでロードします。 + 3. JP2 ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 JP2 ファイルを設定する + string filePath = "input.jp2"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた JP2 ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "JP2" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jp2.ko.md b/content/viewer/net/jp2.ko.md new file mode 100644 index 00000000..24f8a3c1 --- /dev/null +++ b/content/viewer/net/jp2.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JP2 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 JP2을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 JP2 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 JP2 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 JP2 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 JP2을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 JP2 파일을 로드합니다. + 3. JP2 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 JP2 파일 설정 + string filePath = "input.jp2"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 JP2 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "JP2" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jp2.pt.md b/content/viewer/net/jp2.pt.md new file mode 100644 index 00000000..27a9daa4 --- /dev/null +++ b/content/viewer/net/jp2.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JP2 API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir JP2 em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos JP2 para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos JP2 em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo JP2 em C#" + content: | + Com GroupDocs.Viewer você pode renderizar JP2 para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo JP2 com caminho completo. + 3. Defina opções para renderizar o arquivo JP2 em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada JP2 + string filePath = "input.jp2"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo JP2 em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "JP2" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jp2.ru.md b/content/viewer/net/jp2.ru.md new file mode 100644 index 00000000..3378ef5d --- /dev/null +++ b/content/viewer/net/jp2.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JP2 API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения JP2 в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "JP2 средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла JP2 в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла JP2 в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать JP2 в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл JP2 с полным путем. + 3. Установите параметры для преобразования файла JP2 в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл JP2 + string filePath = "input.jp2"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл JP2 в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "JP2" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jp2.th.md b/content/viewer/net/jp2.th.md new file mode 100644 index 00000000..127b4961 --- /dev/null +++ b/content/viewer/net/jp2.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JP2 Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง JP2 ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ JP2 สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ JP2 ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ JP2 ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล JP2 เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ JP2 ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ JP2 เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต JP2 + string filePath = "input.jp2"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ JP2 เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "JP2" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jp2.uk.md b/content/viewer/net/jp2.uk.md new file mode 100644 index 00000000..16ea30e1 --- /dev/null +++ b/content/viewer/net/jp2.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JP2 Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення JP2 у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів JP2 для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу JP2 у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу JP2 у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити JP2 у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл JP2 із повним шляхом. + 3. Встановіть параметри для перетворення файлу JP2 у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл JP2 + string filePath = "input.jp2"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл JP2 у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "JP2" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jp2.vi.md b/content/viewer/net/jp2.vi.md new file mode 100644 index 00000000..f1486bae --- /dev/null +++ b/content/viewer/net/jp2.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET JP2 - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị JP2 trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp JP2 dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp JP2 trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp JP2 trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị JP2 thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp JP2 với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp JP2 thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp JP2 đầu vào + string filePath = "input.jp2"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp JP2 thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "JP2" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jp2.zh.md b/content/viewer/net/jp2.zh.md new file mode 100644 index 00000000..8b03bef1 --- /dev/null +++ b/content/viewer/net/jp2.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JP2 Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 JP2。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 JP2 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 JP2 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 JP2 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 JP2 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 JP2 文件。 + 3. 设置选项以将 JP2 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 JP2 文件 + string filePath = "input.jp2"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 JP2 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "JP2" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpc.de.md b/content/viewer/net/jpc.de.md new file mode 100644 index 00000000..edb21b36 --- /dev/null +++ b/content/viewer/net/jpc.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPC Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von JPC in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "JPC Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von JPC-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der JPC-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie JPC in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei JPC mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei JPC im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei JPC ein + string filePath = "input.jpc"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei JPC mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "JPC" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpc.en.md b/content/viewer/net/jpc.en.md new file mode 100644 index 00000000..1693b08a --- /dev/null +++ b/content/viewer/net/jpc.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPC Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display JPC in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "JPC file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display JPC file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render JPC file in C#" + content: | + With GroupDocs.Viewer you can render JPC to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the JPC file with full path. + 3. Set options to render JPC file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input JPC file + string filePath = "input.jpc"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render JPC file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "JPC" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpc.es.md b/content/viewer/net/jpc.es.md new file mode 100644 index 00000000..fbcbac66 --- /dev/null +++ b/content/viewer/net/jpc.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPC API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar JPC en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "JPC visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos JPC en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo JPC en C#" + content: | + Con GroupDocs.Viewer puede renderizar JPC a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo JPC con la ruta completa. + 3. Configure opciones para representar el archivo JPC en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada JPC + string filePath = "input.jpc"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo JPC a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "JPC" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpc.fa.md b/content/viewer/net/jpc.fa.md new file mode 100644 index 00000000..12dbd87f --- /dev/null +++ b/content/viewer/net/jpc.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPC بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش JPC در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل JPC برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل JPC در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل JPC در C#" + content: | + با GroupDocs.Viewer می‌توانید JPC را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل JPC را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل JPC در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی JPC را تنظیم کنید + string filePath = "input.jpc"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل JPC را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "JPC" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpc.fr.md b/content/viewer/net/jpc.fr.md new file mode 100644 index 00000000..da29b7aa --- /dev/null +++ b/content/viewer/net/jpc.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET JPC - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher JPC dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "JPC visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier JPC dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier JPC dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer JPC au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier JPC avec le chemin complet. + 3. Définissez les options pour restituer le fichier JPC au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée JPC + string filePath = "input.jpc"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier JPC au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "JPC" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpc.id.md b/content/viewer/net/jpc.id.md new file mode 100644 index 00000000..47ee336d --- /dev/null +++ b/content/viewer/net/jpc.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPC Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan JPC di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "JPC penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file JPC dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file JPC di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender JPC ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file JPC dengan path lengkap. + 3. Tetapkan opsi untuk merender file JPC ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan JPC + string filePath = "input.jpc"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file JPC ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "JPC" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpc.it.md b/content/viewer/net/jpc.it.md new file mode 100644 index 00000000..b2bf939f --- /dev/null +++ b/content/viewer/net/jpc.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET JPC: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare JPC in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file JPC per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file JPC in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file JPC in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di JPC in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file JPC con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file JPC nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input JPC + string filePath = "input.jpc"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file JPC in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "JPC" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpc.ja.md b/content/viewer/net/jpc.ja.md new file mode 100644 index 00000000..05a008fd --- /dev/null +++ b/content/viewer/net/jpc.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPC ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで JPC を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の JPC ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで JPC ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で JPC ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で JPC を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、JPC ファイルをフルパスでロードします。 + 3. JPC ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 JPC ファイルを設定する + string filePath = "input.jpc"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた JPC ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "JPC" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpc.ko.md b/content/viewer/net/jpc.ko.md new file mode 100644 index 00000000..a1f4777c --- /dev/null +++ b/content/viewer/net/jpc.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPC 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 JPC을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 JPC 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 JPC 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 JPC 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 JPC을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 JPC 파일을 로드합니다. + 3. JPC 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 JPC 파일 설정 + string filePath = "input.jpc"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 JPC 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "JPC" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpc.pt.md b/content/viewer/net/jpc.pt.md new file mode 100644 index 00000000..690889f3 --- /dev/null +++ b/content/viewer/net/jpc.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPC API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir JPC em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos JPC para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos JPC em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo JPC em C#" + content: | + Com GroupDocs.Viewer você pode renderizar JPC para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo JPC com caminho completo. + 3. Defina opções para renderizar o arquivo JPC em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada JPC + string filePath = "input.jpc"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo JPC em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "JPC" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpc.ru.md b/content/viewer/net/jpc.ru.md new file mode 100644 index 00000000..b4569a05 --- /dev/null +++ b/content/viewer/net/jpc.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPC API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения JPC в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "JPC средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла JPC в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла JPC в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать JPC в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл JPC с полным путем. + 3. Установите параметры для преобразования файла JPC в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл JPC + string filePath = "input.jpc"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл JPC в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "JPC" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpc.th.md b/content/viewer/net/jpc.th.md new file mode 100644 index 00000000..bbeab6bb --- /dev/null +++ b/content/viewer/net/jpc.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPC Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง JPC ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ JPC สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ JPC ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ JPC ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล JPC เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ JPC ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ JPC เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต JPC + string filePath = "input.jpc"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ JPC เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "JPC" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpc.uk.md b/content/viewer/net/jpc.uk.md new file mode 100644 index 00000000..1c07fb6a --- /dev/null +++ b/content/viewer/net/jpc.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPC Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення JPC у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів JPC для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу JPC у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу JPC у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити JPC у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл JPC із повним шляхом. + 3. Встановіть параметри для перетворення файлу JPC у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл JPC + string filePath = "input.jpc"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл JPC у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "JPC" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpc.vi.md b/content/viewer/net/jpc.vi.md new file mode 100644 index 00000000..9c2ee3db --- /dev/null +++ b/content/viewer/net/jpc.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET JPC - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị JPC trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp JPC dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp JPC trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp JPC trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị JPC thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp JPC với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp JPC thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp JPC đầu vào + string filePath = "input.jpc"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp JPC thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "JPC" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpc.zh.md b/content/viewer/net/jpc.zh.md new file mode 100644 index 00000000..5f69535e --- /dev/null +++ b/content/viewer/net/jpc.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPC Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 JPC。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 JPC 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 JPC 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 JPC 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 JPC 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 JPC 文件。 + 3. 设置选项以将 JPC 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 JPC 文件 + string filePath = "input.jpc"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 JPC 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "JPC" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpeg.de.md b/content/viewer/net/jpeg.de.md new file mode 100644 index 00000000..3b9bc14f --- /dev/null +++ b/content/viewer/net/jpeg.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPEG Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von JPEG in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "JPEG Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von JPEG-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der JPEG-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie JPEG in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei JPEG mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei JPEG im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei JPEG ein + string filePath = "input.jpeg"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei JPEG mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "JPEG" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpeg.en.md b/content/viewer/net/jpeg.en.md new file mode 100644 index 00000000..8c207923 --- /dev/null +++ b/content/viewer/net/jpeg.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPEG Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display JPEG in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "JPEG file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display JPEG file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render JPEG file in C#" + content: | + With GroupDocs.Viewer you can render JPEG to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the JPEG file with full path. + 3. Set options to render JPEG file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input JPEG file + string filePath = "input.jpeg"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render JPEG file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "JPEG" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpeg.es.md b/content/viewer/net/jpeg.es.md new file mode 100644 index 00000000..e5cda3e3 --- /dev/null +++ b/content/viewer/net/jpeg.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPEG API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar JPEG en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "JPEG visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos JPEG en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo JPEG en C#" + content: | + Con GroupDocs.Viewer puede renderizar JPEG a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo JPEG con la ruta completa. + 3. Configure opciones para representar el archivo JPEG en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada JPEG + string filePath = "input.jpeg"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo JPEG a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "JPEG" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpeg.fa.md b/content/viewer/net/jpeg.fa.md new file mode 100644 index 00000000..79f5a2e3 --- /dev/null +++ b/content/viewer/net/jpeg.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPEG بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش JPEG در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل JPEG برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل JPEG در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل JPEG در C#" + content: | + با GroupDocs.Viewer می‌توانید JPEG را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل JPEG را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل JPEG در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی JPEG را تنظیم کنید + string filePath = "input.jpeg"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل JPEG را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "JPEG" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpeg.fr.md b/content/viewer/net/jpeg.fr.md new file mode 100644 index 00000000..86837309 --- /dev/null +++ b/content/viewer/net/jpeg.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET JPEG - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher JPEG dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "JPEG visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier JPEG dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier JPEG dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer JPEG au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier JPEG avec le chemin complet. + 3. Définissez les options pour restituer le fichier JPEG au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée JPEG + string filePath = "input.jpeg"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier JPEG au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "JPEG" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpeg.id.md b/content/viewer/net/jpeg.id.md new file mode 100644 index 00000000..348565fb --- /dev/null +++ b/content/viewer/net/jpeg.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPEG Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan JPEG di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "JPEG penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file JPEG dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file JPEG di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender JPEG ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file JPEG dengan path lengkap. + 3. Tetapkan opsi untuk merender file JPEG ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan JPEG + string filePath = "input.jpeg"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file JPEG ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "JPEG" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpeg.it.md b/content/viewer/net/jpeg.it.md new file mode 100644 index 00000000..048493d8 --- /dev/null +++ b/content/viewer/net/jpeg.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET JPEG: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare JPEG in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file JPEG per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file JPEG in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file JPEG in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di JPEG in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file JPEG con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file JPEG nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input JPEG + string filePath = "input.jpeg"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file JPEG in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "JPEG" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpeg.ja.md b/content/viewer/net/jpeg.ja.md new file mode 100644 index 00000000..6e1442ba --- /dev/null +++ b/content/viewer/net/jpeg.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPEG ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで JPEG を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の JPEG ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで JPEG ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で JPEG ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で JPEG を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、JPEG ファイルをフルパスでロードします。 + 3. JPEG ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 JPEG ファイルを設定する + string filePath = "input.jpeg"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた JPEG ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "JPEG" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpeg.ko.md b/content/viewer/net/jpeg.ko.md new file mode 100644 index 00000000..72530d2f --- /dev/null +++ b/content/viewer/net/jpeg.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPEG 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 JPEG을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 JPEG 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 JPEG 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 JPEG 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 JPEG을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 JPEG 파일을 로드합니다. + 3. JPEG 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 JPEG 파일 설정 + string filePath = "input.jpeg"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 JPEG 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "JPEG" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpeg.pt.md b/content/viewer/net/jpeg.pt.md new file mode 100644 index 00000000..a35a405e --- /dev/null +++ b/content/viewer/net/jpeg.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPEG API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir JPEG em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos JPEG para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos JPEG em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo JPEG em C#" + content: | + Com GroupDocs.Viewer você pode renderizar JPEG para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo JPEG com caminho completo. + 3. Defina opções para renderizar o arquivo JPEG em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada JPEG + string filePath = "input.jpeg"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo JPEG em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "JPEG" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpeg.ru.md b/content/viewer/net/jpeg.ru.md new file mode 100644 index 00000000..0b9f6895 --- /dev/null +++ b/content/viewer/net/jpeg.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPEG API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения JPEG в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "JPEG средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла JPEG в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла JPEG в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать JPEG в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл JPEG с полным путем. + 3. Установите параметры для преобразования файла JPEG в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл JPEG + string filePath = "input.jpeg"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл JPEG в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "JPEG" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpeg.th.md b/content/viewer/net/jpeg.th.md new file mode 100644 index 00000000..7ab5b208 --- /dev/null +++ b/content/viewer/net/jpeg.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPEG Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง JPEG ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ JPEG สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ JPEG ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ JPEG ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล JPEG เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ JPEG ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ JPEG เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต JPEG + string filePath = "input.jpeg"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ JPEG เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "JPEG" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpeg.uk.md b/content/viewer/net/jpeg.uk.md new file mode 100644 index 00000000..5582691a --- /dev/null +++ b/content/viewer/net/jpeg.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPEG Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення JPEG у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів JPEG для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу JPEG у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу JPEG у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити JPEG у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл JPEG із повним шляхом. + 3. Встановіть параметри для перетворення файлу JPEG у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл JPEG + string filePath = "input.jpeg"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл JPEG у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "JPEG" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpeg.vi.md b/content/viewer/net/jpeg.vi.md new file mode 100644 index 00000000..3ba6970a --- /dev/null +++ b/content/viewer/net/jpeg.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET JPEG - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị JPEG trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp JPEG dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp JPEG trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp JPEG trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị JPEG thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp JPEG với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp JPEG thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp JPEG đầu vào + string filePath = "input.jpeg"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp JPEG thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "JPEG" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpeg.zh.md b/content/viewer/net/jpeg.zh.md new file mode 100644 index 00000000..25c50140 --- /dev/null +++ b/content/viewer/net/jpeg.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPEG Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 JPEG。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 JPEG 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 JPEG 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 JPEG 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 JPEG 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 JPEG 文件。 + 3. 设置选项以将 JPEG 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 JPEG 文件 + string filePath = "input.jpeg"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 JPEG 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "JPEG" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpf.de.md b/content/viewer/net/jpf.de.md new file mode 100644 index 00000000..3c3ea04b --- /dev/null +++ b/content/viewer/net/jpf.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPF Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von JPF in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "JPF Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von JPF-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der JPF-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie JPF in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei JPF mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei JPF im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei JPF ein + string filePath = "input.jpf"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei JPF mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "JPF" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpf.en.md b/content/viewer/net/jpf.en.md new file mode 100644 index 00000000..c0020aed --- /dev/null +++ b/content/viewer/net/jpf.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPF Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display JPF in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "JPF file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display JPF file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render JPF file in C#" + content: | + With GroupDocs.Viewer you can render JPF to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the JPF file with full path. + 3. Set options to render JPF file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input JPF file + string filePath = "input.jpf"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render JPF file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "JPF" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpf.es.md b/content/viewer/net/jpf.es.md new file mode 100644 index 00000000..38fd2b36 --- /dev/null +++ b/content/viewer/net/jpf.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPF API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar JPF en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "JPF visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos JPF en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo JPF en C#" + content: | + Con GroupDocs.Viewer puede renderizar JPF a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo JPF con la ruta completa. + 3. Configure opciones para representar el archivo JPF en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada JPF + string filePath = "input.jpf"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo JPF a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "JPF" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpf.fa.md b/content/viewer/net/jpf.fa.md new file mode 100644 index 00000000..0f44b0b1 --- /dev/null +++ b/content/viewer/net/jpf.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPF بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش JPF در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل JPF برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل JPF در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل JPF در C#" + content: | + با GroupDocs.Viewer می‌توانید JPF را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل JPF را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل JPF در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی JPF را تنظیم کنید + string filePath = "input.jpf"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل JPF را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "JPF" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpf.fr.md b/content/viewer/net/jpf.fr.md new file mode 100644 index 00000000..2c682795 --- /dev/null +++ b/content/viewer/net/jpf.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET JPF - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher JPF dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "JPF visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier JPF dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier JPF dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer JPF au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier JPF avec le chemin complet. + 3. Définissez les options pour restituer le fichier JPF au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée JPF + string filePath = "input.jpf"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier JPF au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "JPF" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpf.id.md b/content/viewer/net/jpf.id.md new file mode 100644 index 00000000..0ca60353 --- /dev/null +++ b/content/viewer/net/jpf.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPF Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan JPF di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "JPF penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file JPF dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file JPF di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender JPF ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file JPF dengan path lengkap. + 3. Tetapkan opsi untuk merender file JPF ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan JPF + string filePath = "input.jpf"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file JPF ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "JPF" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpf.it.md b/content/viewer/net/jpf.it.md new file mode 100644 index 00000000..f01482c5 --- /dev/null +++ b/content/viewer/net/jpf.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET JPF: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare JPF in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file JPF per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file JPF in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file JPF in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di JPF in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file JPF con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file JPF nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input JPF + string filePath = "input.jpf"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file JPF in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "JPF" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpf.ja.md b/content/viewer/net/jpf.ja.md new file mode 100644 index 00000000..6c052b95 --- /dev/null +++ b/content/viewer/net/jpf.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPF ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで JPF を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の JPF ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで JPF ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で JPF ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で JPF を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、JPF ファイルをフルパスでロードします。 + 3. JPF ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 JPF ファイルを設定する + string filePath = "input.jpf"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた JPF ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "JPF" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpf.ko.md b/content/viewer/net/jpf.ko.md new file mode 100644 index 00000000..019b52d5 --- /dev/null +++ b/content/viewer/net/jpf.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPF 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 JPF을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 JPF 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 JPF 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 JPF 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 JPF을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 JPF 파일을 로드합니다. + 3. JPF 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 JPF 파일 설정 + string filePath = "input.jpf"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 JPF 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "JPF" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpf.pt.md b/content/viewer/net/jpf.pt.md new file mode 100644 index 00000000..f5eff7f9 --- /dev/null +++ b/content/viewer/net/jpf.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPF API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir JPF em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos JPF para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos JPF em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo JPF em C#" + content: | + Com GroupDocs.Viewer você pode renderizar JPF para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo JPF com caminho completo. + 3. Defina opções para renderizar o arquivo JPF em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada JPF + string filePath = "input.jpf"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo JPF em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "JPF" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpf.ru.md b/content/viewer/net/jpf.ru.md new file mode 100644 index 00000000..990d6ceb --- /dev/null +++ b/content/viewer/net/jpf.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPF API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения JPF в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "JPF средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла JPF в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла JPF в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать JPF в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл JPF с полным путем. + 3. Установите параметры для преобразования файла JPF в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл JPF + string filePath = "input.jpf"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл JPF в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "JPF" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpf.th.md b/content/viewer/net/jpf.th.md new file mode 100644 index 00000000..c4d36ca1 --- /dev/null +++ b/content/viewer/net/jpf.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPF Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง JPF ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ JPF สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ JPF ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ JPF ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล JPF เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ JPF ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ JPF เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต JPF + string filePath = "input.jpf"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ JPF เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "JPF" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpf.uk.md b/content/viewer/net/jpf.uk.md new file mode 100644 index 00000000..17474d7c --- /dev/null +++ b/content/viewer/net/jpf.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPF Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення JPF у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів JPF для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу JPF у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу JPF у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити JPF у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл JPF із повним шляхом. + 3. Встановіть параметри для перетворення файлу JPF у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл JPF + string filePath = "input.jpf"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл JPF у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "JPF" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpf.vi.md b/content/viewer/net/jpf.vi.md new file mode 100644 index 00000000..a6e4dadc --- /dev/null +++ b/content/viewer/net/jpf.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET JPF - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị JPF trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp JPF dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp JPF trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp JPF trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị JPF thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp JPF với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp JPF thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp JPF đầu vào + string filePath = "input.jpf"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp JPF thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "JPF" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpf.zh.md b/content/viewer/net/jpf.zh.md new file mode 100644 index 00000000..b7f36b16 --- /dev/null +++ b/content/viewer/net/jpf.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPF Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 JPF。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 JPF 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 JPF 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 JPF 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 JPF 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 JPF 文件。 + 3. 设置选项以将 JPF 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 JPF 文件 + string filePath = "input.jpf"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 JPF 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "JPF" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpg.de.md b/content/viewer/net/jpg.de.md new file mode 100644 index 00000000..1c68e5fa --- /dev/null +++ b/content/viewer/net/jpg.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPG Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von JPG in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "JPG Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von JPG-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der JPG-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie JPG in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei JPG mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei JPG im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei JPG ein + string filePath = "input.jpg"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei JPG mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "JPG" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpg.en.md b/content/viewer/net/jpg.en.md new file mode 100644 index 00000000..f5a9aff4 --- /dev/null +++ b/content/viewer/net/jpg.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPG Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display JPG in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "JPG file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display JPG file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render JPG file in C#" + content: | + With GroupDocs.Viewer you can render JPG to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the JPG file with full path. + 3. Set options to render JPG file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input JPG file + string filePath = "input.jpg"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render JPG file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "JPG" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpg.es.md b/content/viewer/net/jpg.es.md new file mode 100644 index 00000000..878d8e48 --- /dev/null +++ b/content/viewer/net/jpg.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPG API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar JPG en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "JPG visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos JPG en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo JPG en C#" + content: | + Con GroupDocs.Viewer puede renderizar JPG a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo JPG con la ruta completa. + 3. Configure opciones para representar el archivo JPG en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada JPG + string filePath = "input.jpg"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo JPG a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "JPG" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpg.fa.md b/content/viewer/net/jpg.fa.md new file mode 100644 index 00000000..61f0ac39 --- /dev/null +++ b/content/viewer/net/jpg.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPG بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش JPG در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل JPG برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل JPG در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل JPG در C#" + content: | + با GroupDocs.Viewer می‌توانید JPG را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل JPG را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل JPG در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی JPG را تنظیم کنید + string filePath = "input.jpg"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل JPG را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "JPG" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpg.fr.md b/content/viewer/net/jpg.fr.md new file mode 100644 index 00000000..f2b0c62d --- /dev/null +++ b/content/viewer/net/jpg.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET JPG - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher JPG dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "JPG visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier JPG dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier JPG dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer JPG au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier JPG avec le chemin complet. + 3. Définissez les options pour restituer le fichier JPG au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée JPG + string filePath = "input.jpg"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier JPG au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "JPG" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpg.id.md b/content/viewer/net/jpg.id.md new file mode 100644 index 00000000..f29252b0 --- /dev/null +++ b/content/viewer/net/jpg.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPG Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan JPG di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "JPG penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file JPG dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file JPG di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender JPG ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file JPG dengan path lengkap. + 3. Tetapkan opsi untuk merender file JPG ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan JPG + string filePath = "input.jpg"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file JPG ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "JPG" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpg.it.md b/content/viewer/net/jpg.it.md new file mode 100644 index 00000000..02f24c38 --- /dev/null +++ b/content/viewer/net/jpg.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET JPG: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare JPG in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file JPG per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file JPG in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file JPG in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di JPG in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file JPG con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file JPG nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input JPG + string filePath = "input.jpg"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file JPG in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "JPG" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpg.ja.md b/content/viewer/net/jpg.ja.md new file mode 100644 index 00000000..6e72d809 --- /dev/null +++ b/content/viewer/net/jpg.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPG ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで JPG を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の JPG ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで JPG ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で JPG ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で JPG を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、JPG ファイルをフルパスでロードします。 + 3. JPG ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 JPG ファイルを設定する + string filePath = "input.jpg"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた JPG ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "JPG" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpg.ko.md b/content/viewer/net/jpg.ko.md new file mode 100644 index 00000000..46fbd959 --- /dev/null +++ b/content/viewer/net/jpg.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPG 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 JPG을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 JPG 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 JPG 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 JPG 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 JPG을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 JPG 파일을 로드합니다. + 3. JPG 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 JPG 파일 설정 + string filePath = "input.jpg"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 JPG 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "JPG" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpg.pt.md b/content/viewer/net/jpg.pt.md new file mode 100644 index 00000000..783dfa4c --- /dev/null +++ b/content/viewer/net/jpg.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPG API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir JPG em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos JPG para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos JPG em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo JPG em C#" + content: | + Com GroupDocs.Viewer você pode renderizar JPG para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo JPG com caminho completo. + 3. Defina opções para renderizar o arquivo JPG em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada JPG + string filePath = "input.jpg"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo JPG em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "JPG" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpg.ru.md b/content/viewer/net/jpg.ru.md new file mode 100644 index 00000000..91c5fa22 --- /dev/null +++ b/content/viewer/net/jpg.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPG API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения JPG в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "JPG средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла JPG в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла JPG в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать JPG в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл JPG с полным путем. + 3. Установите параметры для преобразования файла JPG в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл JPG + string filePath = "input.jpg"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл JPG в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "JPG" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpg.th.md b/content/viewer/net/jpg.th.md new file mode 100644 index 00000000..885533d4 --- /dev/null +++ b/content/viewer/net/jpg.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPG Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง JPG ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ JPG สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ JPG ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ JPG ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล JPG เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ JPG ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ JPG เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต JPG + string filePath = "input.jpg"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ JPG เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "JPG" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpg.uk.md b/content/viewer/net/jpg.uk.md new file mode 100644 index 00000000..00aa5240 --- /dev/null +++ b/content/viewer/net/jpg.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPG Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення JPG у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів JPG для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу JPG у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу JPG у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити JPG у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл JPG із повним шляхом. + 3. Встановіть параметри для перетворення файлу JPG у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл JPG + string filePath = "input.jpg"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл JPG у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "JPG" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpg.vi.md b/content/viewer/net/jpg.vi.md new file mode 100644 index 00000000..f170f334 --- /dev/null +++ b/content/viewer/net/jpg.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET JPG - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị JPG trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp JPG dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp JPG trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp JPG trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị JPG thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp JPG với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp JPG thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp JPG đầu vào + string filePath = "input.jpg"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp JPG thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "JPG" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpg.zh.md b/content/viewer/net/jpg.zh.md new file mode 100644 index 00000000..bbe2c5c7 --- /dev/null +++ b/content/viewer/net/jpg.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPG Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 JPG。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 JPG 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 JPG 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 JPG 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 JPG 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 JPG 文件。 + 3. 设置选项以将 JPG 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 JPG 文件 + string filePath = "input.jpg"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 JPG 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "JPG" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpm.de.md b/content/viewer/net/jpm.de.md new file mode 100644 index 00000000..a79d2b88 --- /dev/null +++ b/content/viewer/net/jpm.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPM Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von JPM in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "JPM Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von JPM-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der JPM-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie JPM in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei JPM mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei JPM im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei JPM ein + string filePath = "input.jpm"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei JPM mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "JPM" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpm.en.md b/content/viewer/net/jpm.en.md new file mode 100644 index 00000000..2a39df5f --- /dev/null +++ b/content/viewer/net/jpm.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPM Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display JPM in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "JPM file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display JPM file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render JPM file in C#" + content: | + With GroupDocs.Viewer you can render JPM to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the JPM file with full path. + 3. Set options to render JPM file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input JPM file + string filePath = "input.jpm"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render JPM file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "JPM" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpm.es.md b/content/viewer/net/jpm.es.md new file mode 100644 index 00000000..8d957e66 --- /dev/null +++ b/content/viewer/net/jpm.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPM API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar JPM en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "JPM visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos JPM en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo JPM en C#" + content: | + Con GroupDocs.Viewer puede renderizar JPM a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo JPM con la ruta completa. + 3. Configure opciones para representar el archivo JPM en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada JPM + string filePath = "input.jpm"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo JPM a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "JPM" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpm.fa.md b/content/viewer/net/jpm.fa.md new file mode 100644 index 00000000..4f6d7cc5 --- /dev/null +++ b/content/viewer/net/jpm.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPM بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش JPM در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل JPM برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل JPM در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل JPM در C#" + content: | + با GroupDocs.Viewer می‌توانید JPM را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل JPM را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل JPM در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی JPM را تنظیم کنید + string filePath = "input.jpm"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل JPM را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "JPM" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpm.fr.md b/content/viewer/net/jpm.fr.md new file mode 100644 index 00000000..e42243a3 --- /dev/null +++ b/content/viewer/net/jpm.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET JPM - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher JPM dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "JPM visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier JPM dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier JPM dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer JPM au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier JPM avec le chemin complet. + 3. Définissez les options pour restituer le fichier JPM au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée JPM + string filePath = "input.jpm"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier JPM au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "JPM" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpm.id.md b/content/viewer/net/jpm.id.md new file mode 100644 index 00000000..50f0bb01 --- /dev/null +++ b/content/viewer/net/jpm.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPM Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan JPM di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "JPM penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file JPM dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file JPM di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender JPM ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file JPM dengan path lengkap. + 3. Tetapkan opsi untuk merender file JPM ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan JPM + string filePath = "input.jpm"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file JPM ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "JPM" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpm.it.md b/content/viewer/net/jpm.it.md new file mode 100644 index 00000000..3f31c25c --- /dev/null +++ b/content/viewer/net/jpm.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET JPM: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare JPM in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file JPM per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file JPM in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file JPM in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di JPM in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file JPM con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file JPM nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input JPM + string filePath = "input.jpm"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file JPM in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "JPM" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpm.ja.md b/content/viewer/net/jpm.ja.md new file mode 100644 index 00000000..b6953bd0 --- /dev/null +++ b/content/viewer/net/jpm.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPM ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで JPM を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の JPM ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで JPM ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で JPM ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で JPM を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、JPM ファイルをフルパスでロードします。 + 3. JPM ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 JPM ファイルを設定する + string filePath = "input.jpm"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた JPM ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "JPM" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpm.ko.md b/content/viewer/net/jpm.ko.md new file mode 100644 index 00000000..12b3b4e2 --- /dev/null +++ b/content/viewer/net/jpm.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPM 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 JPM을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 JPM 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 JPM 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 JPM 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 JPM을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 JPM 파일을 로드합니다. + 3. JPM 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 JPM 파일 설정 + string filePath = "input.jpm"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 JPM 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "JPM" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpm.pt.md b/content/viewer/net/jpm.pt.md new file mode 100644 index 00000000..8686db01 --- /dev/null +++ b/content/viewer/net/jpm.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPM API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir JPM em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos JPM para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos JPM em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo JPM em C#" + content: | + Com GroupDocs.Viewer você pode renderizar JPM para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo JPM com caminho completo. + 3. Defina opções para renderizar o arquivo JPM em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada JPM + string filePath = "input.jpm"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo JPM em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "JPM" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpm.ru.md b/content/viewer/net/jpm.ru.md new file mode 100644 index 00000000..5b7cbd82 --- /dev/null +++ b/content/viewer/net/jpm.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPM API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения JPM в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "JPM средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла JPM в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла JPM в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать JPM в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл JPM с полным путем. + 3. Установите параметры для преобразования файла JPM в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл JPM + string filePath = "input.jpm"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл JPM в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "JPM" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpm.th.md b/content/viewer/net/jpm.th.md new file mode 100644 index 00000000..c07e57a7 --- /dev/null +++ b/content/viewer/net/jpm.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPM Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง JPM ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ JPM สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ JPM ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ JPM ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล JPM เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ JPM ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ JPM เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต JPM + string filePath = "input.jpm"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ JPM เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "JPM" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpm.uk.md b/content/viewer/net/jpm.uk.md new file mode 100644 index 00000000..59a04bf0 --- /dev/null +++ b/content/viewer/net/jpm.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPM Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення JPM у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів JPM для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу JPM у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу JPM у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити JPM у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл JPM із повним шляхом. + 3. Встановіть параметри для перетворення файлу JPM у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл JPM + string filePath = "input.jpm"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл JPM у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "JPM" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpm.vi.md b/content/viewer/net/jpm.vi.md new file mode 100644 index 00000000..2575e3cb --- /dev/null +++ b/content/viewer/net/jpm.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET JPM - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị JPM trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp JPM dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp JPM trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp JPM trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị JPM thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp JPM với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp JPM thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp JPM đầu vào + string filePath = "input.jpm"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp JPM thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "JPM" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpm.zh.md b/content/viewer/net/jpm.zh.md new file mode 100644 index 00000000..59fd9369 --- /dev/null +++ b/content/viewer/net/jpm.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPM Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 JPM。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 JPM 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 JPM 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 JPM 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 JPM 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 JPM 文件。 + 3. 设置选项以将 JPM 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 JPM 文件 + string filePath = "input.jpm"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 JPM 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "JPM" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpx.de.md b/content/viewer/net/jpx.de.md new file mode 100644 index 00000000..51030bdd --- /dev/null +++ b/content/viewer/net/jpx.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPX Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von JPX in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "JPX Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von JPX-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der JPX-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie JPX in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei JPX mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei JPX im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei JPX ein + string filePath = "input.jpx"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei JPX mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "JPX" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpx.en.md b/content/viewer/net/jpx.en.md new file mode 100644 index 00000000..e45761a6 --- /dev/null +++ b/content/viewer/net/jpx.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPX Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display JPX in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "JPX file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display JPX file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render JPX file in C#" + content: | + With GroupDocs.Viewer you can render JPX to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the JPX file with full path. + 3. Set options to render JPX file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input JPX file + string filePath = "input.jpx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render JPX file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "JPX" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpx.es.md b/content/viewer/net/jpx.es.md new file mode 100644 index 00000000..5b8cfd3d --- /dev/null +++ b/content/viewer/net/jpx.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPX API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar JPX en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "JPX visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos JPX en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo JPX en C#" + content: | + Con GroupDocs.Viewer puede renderizar JPX a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo JPX con la ruta completa. + 3. Configure opciones para representar el archivo JPX en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada JPX + string filePath = "input.jpx"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo JPX a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "JPX" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpx.fa.md b/content/viewer/net/jpx.fa.md new file mode 100644 index 00000000..20bf50cb --- /dev/null +++ b/content/viewer/net/jpx.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPX بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش JPX در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل JPX برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل JPX در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل JPX در C#" + content: | + با GroupDocs.Viewer می‌توانید JPX را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل JPX را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل JPX در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی JPX را تنظیم کنید + string filePath = "input.jpx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل JPX را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "JPX" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpx.fr.md b/content/viewer/net/jpx.fr.md new file mode 100644 index 00000000..53d9e749 --- /dev/null +++ b/content/viewer/net/jpx.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET JPX - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher JPX dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "JPX visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier JPX dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier JPX dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer JPX au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier JPX avec le chemin complet. + 3. Définissez les options pour restituer le fichier JPX au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée JPX + string filePath = "input.jpx"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier JPX au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "JPX" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpx.id.md b/content/viewer/net/jpx.id.md new file mode 100644 index 00000000..ba32a917 --- /dev/null +++ b/content/viewer/net/jpx.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPX Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan JPX di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "JPX penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file JPX dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file JPX di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender JPX ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file JPX dengan path lengkap. + 3. Tetapkan opsi untuk merender file JPX ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan JPX + string filePath = "input.jpx"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file JPX ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "JPX" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpx.it.md b/content/viewer/net/jpx.it.md new file mode 100644 index 00000000..01b53495 --- /dev/null +++ b/content/viewer/net/jpx.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET JPX: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare JPX in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file JPX per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file JPX in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file JPX in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di JPX in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file JPX con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file JPX nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input JPX + string filePath = "input.jpx"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file JPX in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "JPX" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpx.ja.md b/content/viewer/net/jpx.ja.md new file mode 100644 index 00000000..4f32ac27 --- /dev/null +++ b/content/viewer/net/jpx.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPX ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで JPX を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の JPX ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで JPX ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で JPX ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で JPX を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、JPX ファイルをフルパスでロードします。 + 3. JPX ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 JPX ファイルを設定する + string filePath = "input.jpx"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた JPX ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "JPX" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpx.ko.md b/content/viewer/net/jpx.ko.md new file mode 100644 index 00000000..99a1e00f --- /dev/null +++ b/content/viewer/net/jpx.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPX 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 JPX을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 JPX 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 JPX 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 JPX 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 JPX을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 JPX 파일을 로드합니다. + 3. JPX 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 JPX 파일 설정 + string filePath = "input.jpx"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 JPX 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "JPX" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpx.pt.md b/content/viewer/net/jpx.pt.md new file mode 100644 index 00000000..244edbf3 --- /dev/null +++ b/content/viewer/net/jpx.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPX API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir JPX em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos JPX para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos JPX em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo JPX em C#" + content: | + Com GroupDocs.Viewer você pode renderizar JPX para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo JPX com caminho completo. + 3. Defina opções para renderizar o arquivo JPX em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada JPX + string filePath = "input.jpx"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo JPX em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "JPX" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpx.ru.md b/content/viewer/net/jpx.ru.md new file mode 100644 index 00000000..1c3f7d8b --- /dev/null +++ b/content/viewer/net/jpx.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPX API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения JPX в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "JPX средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла JPX в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла JPX в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать JPX в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл JPX с полным путем. + 3. Установите параметры для преобразования файла JPX в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл JPX + string filePath = "input.jpx"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл JPX в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "JPX" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpx.th.md b/content/viewer/net/jpx.th.md new file mode 100644 index 00000000..fa385d51 --- /dev/null +++ b/content/viewer/net/jpx.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPX Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง JPX ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ JPX สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ JPX ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ JPX ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล JPX เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ JPX ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ JPX เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต JPX + string filePath = "input.jpx"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ JPX เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "JPX" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpx.uk.md b/content/viewer/net/jpx.uk.md new file mode 100644 index 00000000..86b44312 --- /dev/null +++ b/content/viewer/net/jpx.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPX Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення JPX у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів JPX для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу JPX у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу JPX у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити JPX у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл JPX із повним шляхом. + 3. Встановіть параметри для перетворення файлу JPX у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл JPX + string filePath = "input.jpx"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл JPX у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "JPX" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpx.vi.md b/content/viewer/net/jpx.vi.md new file mode 100644 index 00000000..d011be3c --- /dev/null +++ b/content/viewer/net/jpx.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET JPX - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị JPX trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp JPX dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp JPX trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp JPX trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị JPX thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp JPX với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp JPX thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp JPX đầu vào + string filePath = "input.jpx"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp JPX thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "JPX" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/jpx.zh.md b/content/viewer/net/jpx.zh.md new file mode 100644 index 00000000..00182ef6 --- /dev/null +++ b/content/viewer/net/jpx.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JPX Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 JPX。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 JPX 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 JPX 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 JPX 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 JPX 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 JPX 文件。 + 3. 设置选项以将 JPX 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 JPX 文件 + string filePath = "input.jpx"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 JPX 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "JPX" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/js.de.md b/content/viewer/net/js.de.md new file mode 100644 index 00000000..6a9f43ac --- /dev/null +++ b/content/viewer/net/js.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JS Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von JS in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "JS Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von JS-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der JS-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie JS in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei JS mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei JS im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei JS ein + string filePath = "input.js"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei JS mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "JS" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/js.en.md b/content/viewer/net/js.en.md new file mode 100644 index 00000000..9a19eb6e --- /dev/null +++ b/content/viewer/net/js.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JS Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display JS in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "JS file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display JS file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render JS file in C#" + content: | + With GroupDocs.Viewer you can render JS to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the JS file with full path. + 3. Set options to render JS file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input JS file + string filePath = "input.js"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render JS file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "JS" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/js.es.md b/content/viewer/net/js.es.md new file mode 100644 index 00000000..ee9b270b --- /dev/null +++ b/content/viewer/net/js.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JS API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar JS en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "JS visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos JS en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo JS en C#" + content: | + Con GroupDocs.Viewer puede renderizar JS a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo JS con la ruta completa. + 3. Configure opciones para representar el archivo JS en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada JS + string filePath = "input.js"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo JS a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "JS" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/js.fa.md b/content/viewer/net/js.fa.md new file mode 100644 index 00000000..9efbbc8e --- /dev/null +++ b/content/viewer/net/js.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JS بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش JS در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل JS برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل JS در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل JS در C#" + content: | + با GroupDocs.Viewer می‌توانید JS را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل JS را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل JS در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی JS را تنظیم کنید + string filePath = "input.js"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل JS را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "JS" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/js.fr.md b/content/viewer/net/js.fr.md new file mode 100644 index 00000000..23cfa765 --- /dev/null +++ b/content/viewer/net/js.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET JS - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher JS dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "JS visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier JS dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier JS dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer JS au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier JS avec le chemin complet. + 3. Définissez les options pour restituer le fichier JS au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée JS + string filePath = "input.js"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier JS au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "JS" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/js.id.md b/content/viewer/net/js.id.md new file mode 100644 index 00000000..6b229198 --- /dev/null +++ b/content/viewer/net/js.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JS Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan JS di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "JS penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file JS dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file JS di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender JS ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file JS dengan path lengkap. + 3. Tetapkan opsi untuk merender file JS ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan JS + string filePath = "input.js"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file JS ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "JS" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/js.it.md b/content/viewer/net/js.it.md new file mode 100644 index 00000000..7790ec71 --- /dev/null +++ b/content/viewer/net/js.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET JS: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare JS in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file JS per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file JS in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file JS in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di JS in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file JS con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file JS nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input JS + string filePath = "input.js"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file JS in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "JS" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/js.ja.md b/content/viewer/net/js.ja.md new file mode 100644 index 00000000..1981478c --- /dev/null +++ b/content/viewer/net/js.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JS ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで JS を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の JS ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで JS ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で JS ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で JS を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、JS ファイルをフルパスでロードします。 + 3. JS ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 JS ファイルを設定する + string filePath = "input.js"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた JS ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "JS" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/js.ko.md b/content/viewer/net/js.ko.md new file mode 100644 index 00000000..1bfbadf9 --- /dev/null +++ b/content/viewer/net/js.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JS 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 JS을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 JS 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 JS 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 JS 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 JS을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 JS 파일을 로드합니다. + 3. JS 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 JS 파일 설정 + string filePath = "input.js"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 JS 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "JS" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/js.pt.md b/content/viewer/net/js.pt.md new file mode 100644 index 00000000..b89b2290 --- /dev/null +++ b/content/viewer/net/js.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JS API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir JS em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos JS para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos JS em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo JS em C#" + content: | + Com GroupDocs.Viewer você pode renderizar JS para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo JS com caminho completo. + 3. Defina opções para renderizar o arquivo JS em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada JS + string filePath = "input.js"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo JS em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "JS" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/js.ru.md b/content/viewer/net/js.ru.md new file mode 100644 index 00000000..65eb123e --- /dev/null +++ b/content/viewer/net/js.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JS API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения JS в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "JS средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла JS в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла JS в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать JS в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл JS с полным путем. + 3. Установите параметры для преобразования файла JS в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл JS + string filePath = "input.js"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл JS в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "JS" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/js.th.md b/content/viewer/net/js.th.md new file mode 100644 index 00000000..416c59f4 --- /dev/null +++ b/content/viewer/net/js.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JS Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง JS ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ JS สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ JS ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ JS ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล JS เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ JS ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ JS เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต JS + string filePath = "input.js"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ JS เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "JS" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/js.uk.md b/content/viewer/net/js.uk.md new file mode 100644 index 00000000..45bca835 --- /dev/null +++ b/content/viewer/net/js.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JS Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення JS у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів JS для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу JS у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу JS у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити JS у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл JS із повним шляхом. + 3. Встановіть параметри для перетворення файлу JS у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл JS + string filePath = "input.js"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл JS у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "JS" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/js.vi.md b/content/viewer/net/js.vi.md new file mode 100644 index 00000000..49e0a834 --- /dev/null +++ b/content/viewer/net/js.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET JS - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị JS trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp JS dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp JS trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp JS trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị JS thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp JS với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp JS thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp JS đầu vào + string filePath = "input.js"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp JS thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "JS" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/js.zh.md b/content/viewer/net/js.zh.md new file mode 100644 index 00000000..c8ff510a --- /dev/null +++ b/content/viewer/net/js.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JS Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 JS。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 JS 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 JS 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 JS 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 JS 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 JS 文件。 + 3. 设置选项以将 JS 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 JS 文件 + string filePath = "input.js"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 JS 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "JS" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/json.de.md b/content/viewer/net/json.de.md new file mode 100644 index 00000000..1196f760 --- /dev/null +++ b/content/viewer/net/json.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JSON Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von JSON in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "JSON Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von JSON-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der JSON-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie JSON in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei JSON mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei JSON im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei JSON ein + string filePath = "input.json"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei JSON mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "JSON" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/json.en.md b/content/viewer/net/json.en.md new file mode 100644 index 00000000..0ee8d9aa --- /dev/null +++ b/content/viewer/net/json.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JSON Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display JSON in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "JSON file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display JSON file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render JSON file in C#" + content: | + With GroupDocs.Viewer you can render JSON to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the JSON file with full path. + 3. Set options to render JSON file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input JSON file + string filePath = "input.json"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render JSON file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "JSON" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/json.es.md b/content/viewer/net/json.es.md new file mode 100644 index 00000000..4ec655c2 --- /dev/null +++ b/content/viewer/net/json.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JSON API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar JSON en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "JSON visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos JSON en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo JSON en C#" + content: | + Con GroupDocs.Viewer puede renderizar JSON a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo JSON con la ruta completa. + 3. Configure opciones para representar el archivo JSON en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada JSON + string filePath = "input.json"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo JSON a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "JSON" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/json.fa.md b/content/viewer/net/json.fa.md new file mode 100644 index 00000000..6f287d6c --- /dev/null +++ b/content/viewer/net/json.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JSON بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش JSON در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل JSON برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل JSON در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل JSON در C#" + content: | + با GroupDocs.Viewer می‌توانید JSON را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل JSON را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل JSON در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی JSON را تنظیم کنید + string filePath = "input.json"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل JSON را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "JSON" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/json.fr.md b/content/viewer/net/json.fr.md new file mode 100644 index 00000000..744951dc --- /dev/null +++ b/content/viewer/net/json.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET JSON - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher JSON dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "JSON visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier JSON dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier JSON dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer JSON au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier JSON avec le chemin complet. + 3. Définissez les options pour restituer le fichier JSON au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée JSON + string filePath = "input.json"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier JSON au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "JSON" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/json.id.md b/content/viewer/net/json.id.md new file mode 100644 index 00000000..a138ba2b --- /dev/null +++ b/content/viewer/net/json.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JSON Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan JSON di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "JSON penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file JSON dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file JSON di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender JSON ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file JSON dengan path lengkap. + 3. Tetapkan opsi untuk merender file JSON ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan JSON + string filePath = "input.json"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file JSON ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "JSON" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/json.it.md b/content/viewer/net/json.it.md new file mode 100644 index 00000000..0500b630 --- /dev/null +++ b/content/viewer/net/json.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET JSON: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare JSON in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file JSON per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file JSON in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file JSON in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di JSON in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file JSON con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file JSON nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input JSON + string filePath = "input.json"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file JSON in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "JSON" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/json.ja.md b/content/viewer/net/json.ja.md new file mode 100644 index 00000000..a836568d --- /dev/null +++ b/content/viewer/net/json.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JSON ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで JSON を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の JSON ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで JSON ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で JSON ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で JSON を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、JSON ファイルをフルパスでロードします。 + 3. JSON ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 JSON ファイルを設定する + string filePath = "input.json"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた JSON ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "JSON" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/json.ko.md b/content/viewer/net/json.ko.md new file mode 100644 index 00000000..7ecd9df7 --- /dev/null +++ b/content/viewer/net/json.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JSON 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 JSON을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 JSON 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 JSON 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 JSON 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 JSON을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 JSON 파일을 로드합니다. + 3. JSON 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 JSON 파일 설정 + string filePath = "input.json"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 JSON 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "JSON" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/json.pt.md b/content/viewer/net/json.pt.md new file mode 100644 index 00000000..b66f0159 --- /dev/null +++ b/content/viewer/net/json.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JSON API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir JSON em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos JSON para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos JSON em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo JSON em C#" + content: | + Com GroupDocs.Viewer você pode renderizar JSON para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo JSON com caminho completo. + 3. Defina opções para renderizar o arquivo JSON em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada JSON + string filePath = "input.json"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo JSON em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "JSON" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/json.ru.md b/content/viewer/net/json.ru.md new file mode 100644 index 00000000..88434b0f --- /dev/null +++ b/content/viewer/net/json.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JSON API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения JSON в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "JSON средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла JSON в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла JSON в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать JSON в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл JSON с полным путем. + 3. Установите параметры для преобразования файла JSON в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл JSON + string filePath = "input.json"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл JSON в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "JSON" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/json.th.md b/content/viewer/net/json.th.md new file mode 100644 index 00000000..3b3a6c88 --- /dev/null +++ b/content/viewer/net/json.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JSON Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง JSON ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ JSON สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ JSON ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ JSON ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล JSON เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ JSON ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ JSON เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต JSON + string filePath = "input.json"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ JSON เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "JSON" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/json.uk.md b/content/viewer/net/json.uk.md new file mode 100644 index 00000000..fbd0d42e --- /dev/null +++ b/content/viewer/net/json.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JSON Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення JSON у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів JSON для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу JSON у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу JSON у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити JSON у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл JSON із повним шляхом. + 3. Встановіть параметри для перетворення файлу JSON у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл JSON + string filePath = "input.json"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл JSON у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "JSON" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/json.vi.md b/content/viewer/net/json.vi.md new file mode 100644 index 00000000..e99b1205 --- /dev/null +++ b/content/viewer/net/json.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET JSON - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị JSON trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp JSON dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp JSON trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp JSON trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị JSON thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp JSON với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp JSON thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp JSON đầu vào + string filePath = "input.json"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp JSON thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "JSON" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/json.zh.md b/content/viewer/net/json.zh.md new file mode 100644 index 00000000..563e8908 --- /dev/null +++ b/content/viewer/net/json.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET JSON Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 JSON。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 JSON 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 JSON 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 JSON 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 JSON 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 JSON 文件。 + 3. 设置选项以将 JSON 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 JSON 文件 + string filePath = "input.json"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 JSON 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "JSON" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/less.de.md b/content/viewer/net/less.de.md new file mode 100644 index 00000000..5ef50562 --- /dev/null +++ b/content/viewer/net/less.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET LESS Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von LESS in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "LESS Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von LESS-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der LESS-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie LESS in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei LESS mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei LESS im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei LESS ein + string filePath = "input.less"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei LESS mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "LESS" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/less.en.md b/content/viewer/net/less.en.md new file mode 100644 index 00000000..3f801bcc --- /dev/null +++ b/content/viewer/net/less.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET LESS Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display LESS in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "LESS file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display LESS file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render LESS file in C#" + content: | + With GroupDocs.Viewer you can render LESS to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the LESS file with full path. + 3. Set options to render LESS file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input LESS file + string filePath = "input.less"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render LESS file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "LESS" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/less.es.md b/content/viewer/net/less.es.md new file mode 100644 index 00000000..f8b96a1f --- /dev/null +++ b/content/viewer/net/less.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET LESS API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar LESS en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "LESS visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos LESS en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo LESS en C#" + content: | + Con GroupDocs.Viewer puede renderizar LESS a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo LESS con la ruta completa. + 3. Configure opciones para representar el archivo LESS en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada LESS + string filePath = "input.less"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo LESS a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "LESS" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/less.fa.md b/content/viewer/net/less.fa.md new file mode 100644 index 00000000..d38c07bf --- /dev/null +++ b/content/viewer/net/less.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET LESS بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش LESS در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل LESS برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل LESS در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل LESS در C#" + content: | + با GroupDocs.Viewer می‌توانید LESS را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل LESS را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل LESS در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی LESS را تنظیم کنید + string filePath = "input.less"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل LESS را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "LESS" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/less.fr.md b/content/viewer/net/less.fr.md new file mode 100644 index 00000000..50c4470c --- /dev/null +++ b/content/viewer/net/less.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET LESS - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher LESS dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "LESS visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier LESS dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier LESS dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer LESS au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier LESS avec le chemin complet. + 3. Définissez les options pour restituer le fichier LESS au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée LESS + string filePath = "input.less"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier LESS au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "LESS" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/less.id.md b/content/viewer/net/less.id.md new file mode 100644 index 00000000..9b4634f2 --- /dev/null +++ b/content/viewer/net/less.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET LESS Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan LESS di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "LESS penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file LESS dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file LESS di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender LESS ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file LESS dengan path lengkap. + 3. Tetapkan opsi untuk merender file LESS ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan LESS + string filePath = "input.less"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file LESS ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "LESS" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/less.it.md b/content/viewer/net/less.it.md new file mode 100644 index 00000000..eade69c9 --- /dev/null +++ b/content/viewer/net/less.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET LESS: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare LESS in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file LESS per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file LESS in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file LESS in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di LESS in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file LESS con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file LESS nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input LESS + string filePath = "input.less"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file LESS in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "LESS" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/less.ja.md b/content/viewer/net/less.ja.md new file mode 100644 index 00000000..db1cd201 --- /dev/null +++ b/content/viewer/net/less.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET LESS ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで LESS を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の LESS ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで LESS ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で LESS ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で LESS を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、LESS ファイルをフルパスでロードします。 + 3. LESS ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 LESS ファイルを設定する + string filePath = "input.less"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた LESS ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "LESS" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/less.ko.md b/content/viewer/net/less.ko.md new file mode 100644 index 00000000..712fc48f --- /dev/null +++ b/content/viewer/net/less.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET LESS 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 LESS을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 LESS 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 LESS 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 LESS 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 LESS을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 LESS 파일을 로드합니다. + 3. LESS 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 LESS 파일 설정 + string filePath = "input.less"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 LESS 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "LESS" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/less.pt.md b/content/viewer/net/less.pt.md new file mode 100644 index 00000000..17c1a73b --- /dev/null +++ b/content/viewer/net/less.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET LESS API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir LESS em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos LESS para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos LESS em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo LESS em C#" + content: | + Com GroupDocs.Viewer você pode renderizar LESS para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo LESS com caminho completo. + 3. Defina opções para renderizar o arquivo LESS em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada LESS + string filePath = "input.less"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo LESS em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "LESS" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/less.ru.md b/content/viewer/net/less.ru.md new file mode 100644 index 00000000..f52ecf33 --- /dev/null +++ b/content/viewer/net/less.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET LESS API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения LESS в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "LESS средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла LESS в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла LESS в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать LESS в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл LESS с полным путем. + 3. Установите параметры для преобразования файла LESS в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл LESS + string filePath = "input.less"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл LESS в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "LESS" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/less.th.md b/content/viewer/net/less.th.md new file mode 100644 index 00000000..198187ef --- /dev/null +++ b/content/viewer/net/less.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET LESS Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง LESS ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ LESS สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ LESS ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ LESS ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล LESS เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ LESS ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ LESS เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต LESS + string filePath = "input.less"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ LESS เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "LESS" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/less.uk.md b/content/viewer/net/less.uk.md new file mode 100644 index 00000000..baa431c3 --- /dev/null +++ b/content/viewer/net/less.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET LESS Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення LESS у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів LESS для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу LESS у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу LESS у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити LESS у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл LESS із повним шляхом. + 3. Встановіть параметри для перетворення файлу LESS у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл LESS + string filePath = "input.less"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл LESS у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "LESS" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/less.vi.md b/content/viewer/net/less.vi.md new file mode 100644 index 00000000..62f8d381 --- /dev/null +++ b/content/viewer/net/less.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET LESS - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị LESS trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp LESS dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp LESS trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp LESS trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị LESS thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp LESS với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp LESS thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp LESS đầu vào + string filePath = "input.less"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp LESS thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "LESS" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/less.zh.md b/content/viewer/net/less.zh.md new file mode 100644 index 00000000..f6fce8ea --- /dev/null +++ b/content/viewer/net/less.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET LESS Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 LESS。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 LESS 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 LESS 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 LESS 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 LESS 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 LESS 文件。 + 3. 设置选项以将 LESS 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 LESS 文件 + string filePath = "input.less"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 LESS 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "LESS" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/log.de.md b/content/viewer/net/log.de.md new file mode 100644 index 00000000..bade40ee --- /dev/null +++ b/content/viewer/net/log.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET LOG Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von LOG in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "LOG Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von LOG-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der LOG-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie LOG in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei LOG mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei LOG im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei LOG ein + string filePath = "input.log"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei LOG mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "LOG" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/log.en.md b/content/viewer/net/log.en.md new file mode 100644 index 00000000..89b43008 --- /dev/null +++ b/content/viewer/net/log.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET LOG Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display LOG in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "LOG file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display LOG file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render LOG file in C#" + content: | + With GroupDocs.Viewer you can render LOG to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the LOG file with full path. + 3. Set options to render LOG file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input LOG file + string filePath = "input.log"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render LOG file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "LOG" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/log.es.md b/content/viewer/net/log.es.md new file mode 100644 index 00000000..59235bcb --- /dev/null +++ b/content/viewer/net/log.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET LOG API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar LOG en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "LOG visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos LOG en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo LOG en C#" + content: | + Con GroupDocs.Viewer puede renderizar LOG a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo LOG con la ruta completa. + 3. Configure opciones para representar el archivo LOG en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada LOG + string filePath = "input.log"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo LOG a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "LOG" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/log.fa.md b/content/viewer/net/log.fa.md new file mode 100644 index 00000000..09f4112e --- /dev/null +++ b/content/viewer/net/log.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET LOG بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش LOG در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل LOG برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل LOG در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل LOG در C#" + content: | + با GroupDocs.Viewer می‌توانید LOG را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل LOG را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل LOG در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی LOG را تنظیم کنید + string filePath = "input.log"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل LOG را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "LOG" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/log.fr.md b/content/viewer/net/log.fr.md new file mode 100644 index 00000000..ffebed0c --- /dev/null +++ b/content/viewer/net/log.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET LOG - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher LOG dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "LOG visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier LOG dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier LOG dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer LOG au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier LOG avec le chemin complet. + 3. Définissez les options pour restituer le fichier LOG au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée LOG + string filePath = "input.log"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier LOG au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "LOG" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/log.id.md b/content/viewer/net/log.id.md new file mode 100644 index 00000000..1ee7d93e --- /dev/null +++ b/content/viewer/net/log.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET LOG Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan LOG di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "LOG penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file LOG dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file LOG di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender LOG ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file LOG dengan path lengkap. + 3. Tetapkan opsi untuk merender file LOG ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan LOG + string filePath = "input.log"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file LOG ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "LOG" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/log.it.md b/content/viewer/net/log.it.md new file mode 100644 index 00000000..030dae37 --- /dev/null +++ b/content/viewer/net/log.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET LOG: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare LOG in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file LOG per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file LOG in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file LOG in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di LOG in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file LOG con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file LOG nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input LOG + string filePath = "input.log"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file LOG in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "LOG" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/log.ja.md b/content/viewer/net/log.ja.md new file mode 100644 index 00000000..c31bcb75 --- /dev/null +++ b/content/viewer/net/log.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET LOG ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで LOG を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の LOG ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで LOG ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で LOG ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で LOG を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、LOG ファイルをフルパスでロードします。 + 3. LOG ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 LOG ファイルを設定する + string filePath = "input.log"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた LOG ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "LOG" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/log.ko.md b/content/viewer/net/log.ko.md new file mode 100644 index 00000000..f2a9bcfd --- /dev/null +++ b/content/viewer/net/log.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET LOG 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 LOG을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 LOG 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 LOG 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 LOG 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 LOG을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 LOG 파일을 로드합니다. + 3. LOG 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 LOG 파일 설정 + string filePath = "input.log"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 LOG 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "LOG" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/log.pt.md b/content/viewer/net/log.pt.md new file mode 100644 index 00000000..2f54d833 --- /dev/null +++ b/content/viewer/net/log.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET LOG API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir LOG em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos LOG para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos LOG em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo LOG em C#" + content: | + Com GroupDocs.Viewer você pode renderizar LOG para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo LOG com caminho completo. + 3. Defina opções para renderizar o arquivo LOG em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada LOG + string filePath = "input.log"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo LOG em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "LOG" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/log.ru.md b/content/viewer/net/log.ru.md new file mode 100644 index 00000000..6c812ce3 --- /dev/null +++ b/content/viewer/net/log.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET LOG API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения LOG в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "LOG средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла LOG в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла LOG в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать LOG в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл LOG с полным путем. + 3. Установите параметры для преобразования файла LOG в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл LOG + string filePath = "input.log"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл LOG в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "LOG" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/log.th.md b/content/viewer/net/log.th.md new file mode 100644 index 00000000..a48faed4 --- /dev/null +++ b/content/viewer/net/log.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET LOG Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง LOG ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ LOG สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ LOG ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ LOG ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล LOG เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ LOG ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ LOG เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต LOG + string filePath = "input.log"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ LOG เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "LOG" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/log.uk.md b/content/viewer/net/log.uk.md new file mode 100644 index 00000000..728a7d28 --- /dev/null +++ b/content/viewer/net/log.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET LOG Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення LOG у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів LOG для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу LOG у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу LOG у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити LOG у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл LOG із повним шляхом. + 3. Встановіть параметри для перетворення файлу LOG у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл LOG + string filePath = "input.log"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл LOG у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "LOG" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/log.vi.md b/content/viewer/net/log.vi.md new file mode 100644 index 00000000..d6803f0c --- /dev/null +++ b/content/viewer/net/log.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET LOG - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị LOG trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp LOG dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp LOG trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp LOG trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị LOG thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp LOG với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp LOG thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp LOG đầu vào + string filePath = "input.log"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp LOG thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "LOG" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/log.zh.md b/content/viewer/net/log.zh.md new file mode 100644 index 00000000..d128c01b --- /dev/null +++ b/content/viewer/net/log.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET LOG Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 LOG。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 LOG 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 LOG 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 LOG 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 LOG 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 LOG 文件。 + 3. 设置选项以将 LOG 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 LOG 文件 + string filePath = "input.log"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 LOG 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "LOG" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/m.de.md b/content/viewer/net/m.de.md new file mode 100644 index 00000000..801239a7 --- /dev/null +++ b/content/viewer/net/m.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET M Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von M in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "M Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von M-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der M-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie M in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei M mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei M im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei M ein + string filePath = "input.m"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei M mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "M" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/m.en.md b/content/viewer/net/m.en.md new file mode 100644 index 00000000..1751d515 --- /dev/null +++ b/content/viewer/net/m.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET M Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display M in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "M file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display M file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render M file in C#" + content: | + With GroupDocs.Viewer you can render M to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the M file with full path. + 3. Set options to render M file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input M file + string filePath = "input.m"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render M file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "M" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/m.es.md b/content/viewer/net/m.es.md new file mode 100644 index 00000000..91b11cbc --- /dev/null +++ b/content/viewer/net/m.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET M API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar M en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "M visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos M en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo M en C#" + content: | + Con GroupDocs.Viewer puede renderizar M a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo M con la ruta completa. + 3. Configure opciones para representar el archivo M en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada M + string filePath = "input.m"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo M a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "M" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/m.fa.md b/content/viewer/net/m.fa.md new file mode 100644 index 00000000..d2e92020 --- /dev/null +++ b/content/viewer/net/m.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET M بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش M در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل M برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل M در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل M در C#" + content: | + با GroupDocs.Viewer می‌توانید M را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل M را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل M در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی M را تنظیم کنید + string filePath = "input.m"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل M را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "M" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/m.fr.md b/content/viewer/net/m.fr.md new file mode 100644 index 00000000..47b54f98 --- /dev/null +++ b/content/viewer/net/m.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET M - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher M dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "M visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier M dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier M dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer M au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier M avec le chemin complet. + 3. Définissez les options pour restituer le fichier M au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée M + string filePath = "input.m"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier M au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "M" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/m.id.md b/content/viewer/net/m.id.md new file mode 100644 index 00000000..c1db43fd --- /dev/null +++ b/content/viewer/net/m.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET M Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan M di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "M penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file M dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file M di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender M ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file M dengan path lengkap. + 3. Tetapkan opsi untuk merender file M ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan M + string filePath = "input.m"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file M ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "M" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/m.it.md b/content/viewer/net/m.it.md new file mode 100644 index 00000000..0680d68f --- /dev/null +++ b/content/viewer/net/m.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET M: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare M in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file M per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file M in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file M in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di M in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file M con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file M nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input M + string filePath = "input.m"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file M in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "M" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/m.ja.md b/content/viewer/net/m.ja.md new file mode 100644 index 00000000..677bc6b0 --- /dev/null +++ b/content/viewer/net/m.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET M ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで M を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の M ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで M ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で M ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で M を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、M ファイルをフルパスでロードします。 + 3. M ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 M ファイルを設定する + string filePath = "input.m"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた M ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "M" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/m.ko.md b/content/viewer/net/m.ko.md new file mode 100644 index 00000000..2c93476e --- /dev/null +++ b/content/viewer/net/m.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET M 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 M을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 M 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 M 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 M 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 M을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 M 파일을 로드합니다. + 3. M 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 M 파일 설정 + string filePath = "input.m"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 M 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "M" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/m.pt.md b/content/viewer/net/m.pt.md new file mode 100644 index 00000000..96450b96 --- /dev/null +++ b/content/viewer/net/m.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET M API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir M em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos M para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos M em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo M em C#" + content: | + Com GroupDocs.Viewer você pode renderizar M para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo M com caminho completo. + 3. Defina opções para renderizar o arquivo M em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada M + string filePath = "input.m"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo M em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "M" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/m.ru.md b/content/viewer/net/m.ru.md new file mode 100644 index 00000000..8d011029 --- /dev/null +++ b/content/viewer/net/m.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET M API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения M в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "M средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла M в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла M в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать M в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл M с полным путем. + 3. Установите параметры для преобразования файла M в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл M + string filePath = "input.m"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл M в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "M" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/m.th.md b/content/viewer/net/m.th.md new file mode 100644 index 00000000..23e05fde --- /dev/null +++ b/content/viewer/net/m.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET M Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง M ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ M สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ M ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ M ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล M เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ M ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ M เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต M + string filePath = "input.m"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ M เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "M" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/m.uk.md b/content/viewer/net/m.uk.md new file mode 100644 index 00000000..7f876337 --- /dev/null +++ b/content/viewer/net/m.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET M Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення M у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів M для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу M у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу M у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити M у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл M із повним шляхом. + 3. Встановіть параметри для перетворення файлу M у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл M + string filePath = "input.m"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл M у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "M" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/m.vi.md b/content/viewer/net/m.vi.md new file mode 100644 index 00000000..292f503f --- /dev/null +++ b/content/viewer/net/m.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET M - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị M trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp M dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp M trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp M trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị M thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp M với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp M thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp M đầu vào + string filePath = "input.m"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp M thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "M" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/m.zh.md b/content/viewer/net/m.zh.md new file mode 100644 index 00000000..b6ac4890 --- /dev/null +++ b/content/viewer/net/m.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET M Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 M。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 M 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 M 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 M 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 M 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 M 文件。 + 3. 设置选项以将 M 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 M 文件 + string filePath = "input.m"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 M 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "M" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/make.de.md b/content/viewer/net/make.de.md new file mode 100644 index 00000000..69d81c6c --- /dev/null +++ b/content/viewer/net/make.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MAKE Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von MAKE in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "MAKE Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von MAKE-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der MAKE-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie MAKE in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei MAKE mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei MAKE im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei MAKE ein + string filePath = "input.make"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei MAKE mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "MAKE" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/make.en.md b/content/viewer/net/make.en.md new file mode 100644 index 00000000..0ce98233 --- /dev/null +++ b/content/viewer/net/make.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MAKE Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display MAKE in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "MAKE file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display MAKE file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render MAKE file in C#" + content: | + With GroupDocs.Viewer you can render MAKE to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the MAKE file with full path. + 3. Set options to render MAKE file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input MAKE file + string filePath = "input.make"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render MAKE file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "MAKE" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/make.es.md b/content/viewer/net/make.es.md new file mode 100644 index 00000000..412b42ba --- /dev/null +++ b/content/viewer/net/make.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MAKE API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar MAKE en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "MAKE visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos MAKE en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo MAKE en C#" + content: | + Con GroupDocs.Viewer puede renderizar MAKE a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo MAKE con la ruta completa. + 3. Configure opciones para representar el archivo MAKE en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada MAKE + string filePath = "input.make"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo MAKE a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "MAKE" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/make.fa.md b/content/viewer/net/make.fa.md new file mode 100644 index 00000000..a83c1092 --- /dev/null +++ b/content/viewer/net/make.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MAKE بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش MAKE در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل MAKE برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل MAKE در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل MAKE در C#" + content: | + با GroupDocs.Viewer می‌توانید MAKE را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل MAKE را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل MAKE در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی MAKE را تنظیم کنید + string filePath = "input.make"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل MAKE را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "MAKE" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/make.fr.md b/content/viewer/net/make.fr.md new file mode 100644 index 00000000..74a78d64 --- /dev/null +++ b/content/viewer/net/make.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET MAKE - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher MAKE dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "MAKE visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier MAKE dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier MAKE dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer MAKE au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier MAKE avec le chemin complet. + 3. Définissez les options pour restituer le fichier MAKE au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée MAKE + string filePath = "input.make"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier MAKE au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "MAKE" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/make.id.md b/content/viewer/net/make.id.md new file mode 100644 index 00000000..95e532ec --- /dev/null +++ b/content/viewer/net/make.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MAKE Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan MAKE di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "MAKE penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file MAKE dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file MAKE di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender MAKE ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file MAKE dengan path lengkap. + 3. Tetapkan opsi untuk merender file MAKE ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan MAKE + string filePath = "input.make"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file MAKE ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "MAKE" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/make.it.md b/content/viewer/net/make.it.md new file mode 100644 index 00000000..bd95e4b1 --- /dev/null +++ b/content/viewer/net/make.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET MAKE: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare MAKE in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file MAKE per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file MAKE in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file MAKE in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di MAKE in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file MAKE con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file MAKE nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input MAKE + string filePath = "input.make"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file MAKE in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "MAKE" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/make.ja.md b/content/viewer/net/make.ja.md new file mode 100644 index 00000000..56f76a56 --- /dev/null +++ b/content/viewer/net/make.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MAKE ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで MAKE を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の MAKE ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで MAKE ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で MAKE ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で MAKE を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、MAKE ファイルをフルパスでロードします。 + 3. MAKE ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 MAKE ファイルを設定する + string filePath = "input.make"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた MAKE ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "MAKE" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/make.ko.md b/content/viewer/net/make.ko.md new file mode 100644 index 00000000..97641acd --- /dev/null +++ b/content/viewer/net/make.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MAKE 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 MAKE을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 MAKE 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 MAKE 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 MAKE 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 MAKE을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 MAKE 파일을 로드합니다. + 3. MAKE 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 MAKE 파일 설정 + string filePath = "input.make"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 MAKE 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "MAKE" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/make.pt.md b/content/viewer/net/make.pt.md new file mode 100644 index 00000000..23ae25a7 --- /dev/null +++ b/content/viewer/net/make.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MAKE API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir MAKE em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos MAKE para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos MAKE em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo MAKE em C#" + content: | + Com GroupDocs.Viewer você pode renderizar MAKE para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo MAKE com caminho completo. + 3. Defina opções para renderizar o arquivo MAKE em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada MAKE + string filePath = "input.make"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo MAKE em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "MAKE" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/make.ru.md b/content/viewer/net/make.ru.md new file mode 100644 index 00000000..bd1ec936 --- /dev/null +++ b/content/viewer/net/make.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MAKE API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения MAKE в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "MAKE средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла MAKE в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла MAKE в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать MAKE в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл MAKE с полным путем. + 3. Установите параметры для преобразования файла MAKE в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл MAKE + string filePath = "input.make"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл MAKE в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "MAKE" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/make.th.md b/content/viewer/net/make.th.md new file mode 100644 index 00000000..b9ad542c --- /dev/null +++ b/content/viewer/net/make.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MAKE Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง MAKE ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ MAKE สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ MAKE ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ MAKE ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล MAKE เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ MAKE ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ MAKE เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต MAKE + string filePath = "input.make"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ MAKE เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "MAKE" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/make.uk.md b/content/viewer/net/make.uk.md new file mode 100644 index 00000000..1c05aed2 --- /dev/null +++ b/content/viewer/net/make.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MAKE Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення MAKE у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів MAKE для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу MAKE у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу MAKE у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити MAKE у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл MAKE із повним шляхом. + 3. Встановіть параметри для перетворення файлу MAKE у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл MAKE + string filePath = "input.make"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл MAKE у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "MAKE" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/make.vi.md b/content/viewer/net/make.vi.md new file mode 100644 index 00000000..902406ec --- /dev/null +++ b/content/viewer/net/make.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET MAKE - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị MAKE trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp MAKE dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp MAKE trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp MAKE trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị MAKE thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp MAKE với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp MAKE thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp MAKE đầu vào + string filePath = "input.make"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp MAKE thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "MAKE" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/make.zh.md b/content/viewer/net/make.zh.md new file mode 100644 index 00000000..019f6675 --- /dev/null +++ b/content/viewer/net/make.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MAKE Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 MAKE。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 MAKE 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 MAKE 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 MAKE 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 MAKE 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 MAKE 文件。 + 3. 设置选项以将 MAKE 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 MAKE 文件 + string filePath = "input.make"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 MAKE 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "MAKE" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mbox.de.md b/content/viewer/net/mbox.de.md new file mode 100644 index 00000000..bff358bb --- /dev/null +++ b/content/viewer/net/mbox.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MBOX Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von MBOX in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "MBOX Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von MBOX-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der MBOX-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie MBOX in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei MBOX mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei MBOX im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei MBOX ein + string filePath = "input.mbox"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei MBOX mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "MBOX" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mbox.en.md b/content/viewer/net/mbox.en.md new file mode 100644 index 00000000..69b2601f --- /dev/null +++ b/content/viewer/net/mbox.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MBOX Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display MBOX in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "MBOX file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display MBOX file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render MBOX file in C#" + content: | + With GroupDocs.Viewer you can render MBOX to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the MBOX file with full path. + 3. Set options to render MBOX file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input MBOX file + string filePath = "input.mbox"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render MBOX file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "MBOX" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mbox.es.md b/content/viewer/net/mbox.es.md new file mode 100644 index 00000000..bdb9e88c --- /dev/null +++ b/content/viewer/net/mbox.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MBOX API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar MBOX en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "MBOX visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos MBOX en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo MBOX en C#" + content: | + Con GroupDocs.Viewer puede renderizar MBOX a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo MBOX con la ruta completa. + 3. Configure opciones para representar el archivo MBOX en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada MBOX + string filePath = "input.mbox"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo MBOX a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "MBOX" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mbox.fa.md b/content/viewer/net/mbox.fa.md new file mode 100644 index 00000000..337be992 --- /dev/null +++ b/content/viewer/net/mbox.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MBOX بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش MBOX در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل MBOX برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل MBOX در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل MBOX در C#" + content: | + با GroupDocs.Viewer می‌توانید MBOX را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل MBOX را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل MBOX در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی MBOX را تنظیم کنید + string filePath = "input.mbox"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل MBOX را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "MBOX" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mbox.fr.md b/content/viewer/net/mbox.fr.md new file mode 100644 index 00000000..c2d41ecd --- /dev/null +++ b/content/viewer/net/mbox.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET MBOX - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher MBOX dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "MBOX visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier MBOX dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier MBOX dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer MBOX au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier MBOX avec le chemin complet. + 3. Définissez les options pour restituer le fichier MBOX au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée MBOX + string filePath = "input.mbox"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier MBOX au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "MBOX" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mbox.id.md b/content/viewer/net/mbox.id.md new file mode 100644 index 00000000..005890c5 --- /dev/null +++ b/content/viewer/net/mbox.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MBOX Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan MBOX di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "MBOX penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file MBOX dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file MBOX di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender MBOX ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file MBOX dengan path lengkap. + 3. Tetapkan opsi untuk merender file MBOX ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan MBOX + string filePath = "input.mbox"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file MBOX ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "MBOX" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mbox.it.md b/content/viewer/net/mbox.it.md new file mode 100644 index 00000000..4ae4b521 --- /dev/null +++ b/content/viewer/net/mbox.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET MBOX: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare MBOX in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file MBOX per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file MBOX in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file MBOX in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di MBOX in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file MBOX con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file MBOX nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input MBOX + string filePath = "input.mbox"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file MBOX in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "MBOX" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mbox.ja.md b/content/viewer/net/mbox.ja.md new file mode 100644 index 00000000..9ba21b77 --- /dev/null +++ b/content/viewer/net/mbox.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MBOX ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで MBOX を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の MBOX ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで MBOX ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で MBOX ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で MBOX を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、MBOX ファイルをフルパスでロードします。 + 3. MBOX ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 MBOX ファイルを設定する + string filePath = "input.mbox"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた MBOX ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "MBOX" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mbox.ko.md b/content/viewer/net/mbox.ko.md new file mode 100644 index 00000000..abb3b955 --- /dev/null +++ b/content/viewer/net/mbox.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MBOX 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 MBOX을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 MBOX 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 MBOX 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 MBOX 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 MBOX을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 MBOX 파일을 로드합니다. + 3. MBOX 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 MBOX 파일 설정 + string filePath = "input.mbox"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 MBOX 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "MBOX" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mbox.pt.md b/content/viewer/net/mbox.pt.md new file mode 100644 index 00000000..554fd01e --- /dev/null +++ b/content/viewer/net/mbox.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MBOX API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir MBOX em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos MBOX para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos MBOX em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo MBOX em C#" + content: | + Com GroupDocs.Viewer você pode renderizar MBOX para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo MBOX com caminho completo. + 3. Defina opções para renderizar o arquivo MBOX em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada MBOX + string filePath = "input.mbox"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo MBOX em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "MBOX" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mbox.ru.md b/content/viewer/net/mbox.ru.md new file mode 100644 index 00000000..c09eb634 --- /dev/null +++ b/content/viewer/net/mbox.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MBOX API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения MBOX в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "MBOX средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла MBOX в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла MBOX в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать MBOX в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл MBOX с полным путем. + 3. Установите параметры для преобразования файла MBOX в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл MBOX + string filePath = "input.mbox"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл MBOX в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "MBOX" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mbox.th.md b/content/viewer/net/mbox.th.md new file mode 100644 index 00000000..5869d1ad --- /dev/null +++ b/content/viewer/net/mbox.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MBOX Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง MBOX ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ MBOX สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ MBOX ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ MBOX ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล MBOX เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ MBOX ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ MBOX เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต MBOX + string filePath = "input.mbox"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ MBOX เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "MBOX" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mbox.uk.md b/content/viewer/net/mbox.uk.md new file mode 100644 index 00000000..3c68c72e --- /dev/null +++ b/content/viewer/net/mbox.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MBOX Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення MBOX у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів MBOX для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу MBOX у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу MBOX у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити MBOX у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл MBOX із повним шляхом. + 3. Встановіть параметри для перетворення файлу MBOX у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл MBOX + string filePath = "input.mbox"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл MBOX у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "MBOX" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mbox.vi.md b/content/viewer/net/mbox.vi.md new file mode 100644 index 00000000..60b2d9aa --- /dev/null +++ b/content/viewer/net/mbox.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET MBOX - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị MBOX trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp MBOX dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp MBOX trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp MBOX trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị MBOX thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp MBOX với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp MBOX thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp MBOX đầu vào + string filePath = "input.mbox"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp MBOX thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "MBOX" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mbox.zh.md b/content/viewer/net/mbox.zh.md new file mode 100644 index 00000000..43d0126b --- /dev/null +++ b/content/viewer/net/mbox.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MBOX Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 MBOX。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 MBOX 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 MBOX 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 MBOX 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 MBOX 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 MBOX 文件。 + 3. 设置选项以将 MBOX 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 MBOX 文件 + string filePath = "input.mbox"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 MBOX 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "MBOX" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/md.de.md b/content/viewer/net/md.de.md new file mode 100644 index 00000000..5c61c94c --- /dev/null +++ b/content/viewer/net/md.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MD Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von MD in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "MD Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von MD-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der MD-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie MD in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei MD mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei MD im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei MD ein + string filePath = "input.md"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei MD mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "MD" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/md.en.md b/content/viewer/net/md.en.md new file mode 100644 index 00000000..d4f50e75 --- /dev/null +++ b/content/viewer/net/md.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MD Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display MD in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "MD file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display MD file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render MD file in C#" + content: | + With GroupDocs.Viewer you can render MD to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the MD file with full path. + 3. Set options to render MD file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input MD file + string filePath = "input.md"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render MD file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "MD" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/md.es.md b/content/viewer/net/md.es.md new file mode 100644 index 00000000..c152c835 --- /dev/null +++ b/content/viewer/net/md.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MD API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar MD en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "MD visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos MD en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo MD en C#" + content: | + Con GroupDocs.Viewer puede renderizar MD a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo MD con la ruta completa. + 3. Configure opciones para representar el archivo MD en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada MD + string filePath = "input.md"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo MD a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "MD" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/md.fa.md b/content/viewer/net/md.fa.md new file mode 100644 index 00000000..245e95d1 --- /dev/null +++ b/content/viewer/net/md.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MD بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش MD در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل MD برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل MD در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل MD در C#" + content: | + با GroupDocs.Viewer می‌توانید MD را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل MD را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل MD در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی MD را تنظیم کنید + string filePath = "input.md"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل MD را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "MD" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/md.fr.md b/content/viewer/net/md.fr.md new file mode 100644 index 00000000..c7c59ea3 --- /dev/null +++ b/content/viewer/net/md.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET MD - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher MD dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "MD visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier MD dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier MD dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer MD au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier MD avec le chemin complet. + 3. Définissez les options pour restituer le fichier MD au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée MD + string filePath = "input.md"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier MD au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "MD" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/md.id.md b/content/viewer/net/md.id.md new file mode 100644 index 00000000..365eb4e1 --- /dev/null +++ b/content/viewer/net/md.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MD Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan MD di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "MD penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file MD dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file MD di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender MD ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file MD dengan path lengkap. + 3. Tetapkan opsi untuk merender file MD ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan MD + string filePath = "input.md"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file MD ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "MD" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/md.it.md b/content/viewer/net/md.it.md new file mode 100644 index 00000000..2b5070a4 --- /dev/null +++ b/content/viewer/net/md.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET MD: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare MD in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file MD per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file MD in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file MD in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di MD in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file MD con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file MD nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input MD + string filePath = "input.md"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file MD in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "MD" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/md.ja.md b/content/viewer/net/md.ja.md new file mode 100644 index 00000000..279a717b --- /dev/null +++ b/content/viewer/net/md.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MD ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで MD を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の MD ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで MD ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で MD ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で MD を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、MD ファイルをフルパスでロードします。 + 3. MD ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 MD ファイルを設定する + string filePath = "input.md"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた MD ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "MD" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/md.ko.md b/content/viewer/net/md.ko.md new file mode 100644 index 00000000..7e74e544 --- /dev/null +++ b/content/viewer/net/md.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MD 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 MD을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 MD 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 MD 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 MD 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 MD을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 MD 파일을 로드합니다. + 3. MD 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 MD 파일 설정 + string filePath = "input.md"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 MD 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "MD" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/md.pt.md b/content/viewer/net/md.pt.md new file mode 100644 index 00000000..f572fe01 --- /dev/null +++ b/content/viewer/net/md.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MD API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir MD em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos MD para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos MD em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo MD em C#" + content: | + Com GroupDocs.Viewer você pode renderizar MD para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo MD com caminho completo. + 3. Defina opções para renderizar o arquivo MD em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada MD + string filePath = "input.md"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo MD em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "MD" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/md.ru.md b/content/viewer/net/md.ru.md new file mode 100644 index 00000000..13035d2b --- /dev/null +++ b/content/viewer/net/md.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MD API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения MD в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "MD средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла MD в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла MD в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать MD в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл MD с полным путем. + 3. Установите параметры для преобразования файла MD в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл MD + string filePath = "input.md"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл MD в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "MD" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/md.th.md b/content/viewer/net/md.th.md new file mode 100644 index 00000000..1dbaece3 --- /dev/null +++ b/content/viewer/net/md.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MD Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง MD ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ MD สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ MD ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ MD ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล MD เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ MD ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ MD เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต MD + string filePath = "input.md"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ MD เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "MD" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/md.uk.md b/content/viewer/net/md.uk.md new file mode 100644 index 00000000..5ac9e479 --- /dev/null +++ b/content/viewer/net/md.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MD Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення MD у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів MD для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу MD у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу MD у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити MD у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл MD із повним шляхом. + 3. Встановіть параметри для перетворення файлу MD у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл MD + string filePath = "input.md"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл MD у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "MD" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/md.vi.md b/content/viewer/net/md.vi.md new file mode 100644 index 00000000..223091be --- /dev/null +++ b/content/viewer/net/md.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET MD - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị MD trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp MD dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp MD trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp MD trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị MD thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp MD với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp MD thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp MD đầu vào + string filePath = "input.md"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp MD thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "MD" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/md.zh.md b/content/viewer/net/md.zh.md new file mode 100644 index 00000000..67880dee --- /dev/null +++ b/content/viewer/net/md.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MD Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 MD。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 MD 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 MD 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 MD 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 MD 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 MD 文件。 + 3. 设置选项以将 MD 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 MD 文件 + string filePath = "input.md"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 MD 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "MD" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mht.de.md b/content/viewer/net/mht.de.md new file mode 100644 index 00000000..b6ca4848 --- /dev/null +++ b/content/viewer/net/mht.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MHT Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von MHT in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "MHT Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von MHT-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der MHT-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie MHT in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei MHT mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei MHT im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei MHT ein + string filePath = "input.mht"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei MHT mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "MHT" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mht.en.md b/content/viewer/net/mht.en.md new file mode 100644 index 00000000..b7b0aecf --- /dev/null +++ b/content/viewer/net/mht.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MHT Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display MHT in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "MHT file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display MHT file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render MHT file in C#" + content: | + With GroupDocs.Viewer you can render MHT to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the MHT file with full path. + 3. Set options to render MHT file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input MHT file + string filePath = "input.mht"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render MHT file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "MHT" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mht.es.md b/content/viewer/net/mht.es.md new file mode 100644 index 00000000..a443c5fd --- /dev/null +++ b/content/viewer/net/mht.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MHT API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar MHT en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "MHT visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos MHT en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo MHT en C#" + content: | + Con GroupDocs.Viewer puede renderizar MHT a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo MHT con la ruta completa. + 3. Configure opciones para representar el archivo MHT en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada MHT + string filePath = "input.mht"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo MHT a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "MHT" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mht.fa.md b/content/viewer/net/mht.fa.md new file mode 100644 index 00000000..2b0e374c --- /dev/null +++ b/content/viewer/net/mht.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MHT بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش MHT در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل MHT برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل MHT در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل MHT در C#" + content: | + با GroupDocs.Viewer می‌توانید MHT را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل MHT را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل MHT در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی MHT را تنظیم کنید + string filePath = "input.mht"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل MHT را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "MHT" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mht.fr.md b/content/viewer/net/mht.fr.md new file mode 100644 index 00000000..5fb07958 --- /dev/null +++ b/content/viewer/net/mht.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET MHT - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher MHT dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "MHT visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier MHT dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier MHT dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer MHT au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier MHT avec le chemin complet. + 3. Définissez les options pour restituer le fichier MHT au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée MHT + string filePath = "input.mht"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier MHT au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "MHT" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mht.id.md b/content/viewer/net/mht.id.md new file mode 100644 index 00000000..d0774f24 --- /dev/null +++ b/content/viewer/net/mht.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MHT Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan MHT di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "MHT penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file MHT dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file MHT di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender MHT ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file MHT dengan path lengkap. + 3. Tetapkan opsi untuk merender file MHT ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan MHT + string filePath = "input.mht"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file MHT ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "MHT" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mht.it.md b/content/viewer/net/mht.it.md new file mode 100644 index 00000000..b9f63f56 --- /dev/null +++ b/content/viewer/net/mht.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET MHT: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare MHT in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file MHT per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file MHT in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file MHT in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di MHT in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file MHT con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file MHT nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input MHT + string filePath = "input.mht"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file MHT in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "MHT" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mht.ja.md b/content/viewer/net/mht.ja.md new file mode 100644 index 00000000..68c3f509 --- /dev/null +++ b/content/viewer/net/mht.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MHT ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで MHT を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の MHT ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで MHT ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で MHT ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で MHT を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、MHT ファイルをフルパスでロードします。 + 3. MHT ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 MHT ファイルを設定する + string filePath = "input.mht"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた MHT ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "MHT" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mht.ko.md b/content/viewer/net/mht.ko.md new file mode 100644 index 00000000..46294723 --- /dev/null +++ b/content/viewer/net/mht.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MHT 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 MHT을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 MHT 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 MHT 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 MHT 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 MHT을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 MHT 파일을 로드합니다. + 3. MHT 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 MHT 파일 설정 + string filePath = "input.mht"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 MHT 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "MHT" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mht.pt.md b/content/viewer/net/mht.pt.md new file mode 100644 index 00000000..f078dbce --- /dev/null +++ b/content/viewer/net/mht.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MHT API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir MHT em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos MHT para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos MHT em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo MHT em C#" + content: | + Com GroupDocs.Viewer você pode renderizar MHT para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo MHT com caminho completo. + 3. Defina opções para renderizar o arquivo MHT em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada MHT + string filePath = "input.mht"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo MHT em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "MHT" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mht.ru.md b/content/viewer/net/mht.ru.md new file mode 100644 index 00000000..5be242fc --- /dev/null +++ b/content/viewer/net/mht.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MHT API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения MHT в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "MHT средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла MHT в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла MHT в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать MHT в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл MHT с полным путем. + 3. Установите параметры для преобразования файла MHT в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл MHT + string filePath = "input.mht"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл MHT в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "MHT" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mht.th.md b/content/viewer/net/mht.th.md new file mode 100644 index 00000000..4574cf3b --- /dev/null +++ b/content/viewer/net/mht.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MHT Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง MHT ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ MHT สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ MHT ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ MHT ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล MHT เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ MHT ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ MHT เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต MHT + string filePath = "input.mht"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ MHT เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "MHT" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mht.uk.md b/content/viewer/net/mht.uk.md new file mode 100644 index 00000000..6098e1c5 --- /dev/null +++ b/content/viewer/net/mht.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MHT Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення MHT у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів MHT для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу MHT у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу MHT у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити MHT у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл MHT із повним шляхом. + 3. Встановіть параметри для перетворення файлу MHT у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл MHT + string filePath = "input.mht"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл MHT у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "MHT" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mht.vi.md b/content/viewer/net/mht.vi.md new file mode 100644 index 00000000..c2850eb2 --- /dev/null +++ b/content/viewer/net/mht.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET MHT - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị MHT trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp MHT dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp MHT trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp MHT trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị MHT thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp MHT với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp MHT thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp MHT đầu vào + string filePath = "input.mht"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp MHT thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "MHT" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mht.zh.md b/content/viewer/net/mht.zh.md new file mode 100644 index 00000000..1b0ff505 --- /dev/null +++ b/content/viewer/net/mht.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MHT Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 MHT。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 MHT 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 MHT 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 MHT 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 MHT 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 MHT 文件。 + 3. 设置选项以将 MHT 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 MHT 文件 + string filePath = "input.mht"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 MHT 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "MHT" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mhtml.de.md b/content/viewer/net/mhtml.de.md new file mode 100644 index 00000000..79ee8d18 --- /dev/null +++ b/content/viewer/net/mhtml.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MHTML Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von MHTML in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "MHTML Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von MHTML-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der MHTML-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie MHTML in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei MHTML mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei MHTML im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei MHTML ein + string filePath = "input.mhtml"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei MHTML mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "MHTML" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mhtml.en.md b/content/viewer/net/mhtml.en.md new file mode 100644 index 00000000..793aa3a5 --- /dev/null +++ b/content/viewer/net/mhtml.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MHTML Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display MHTML in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "MHTML file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display MHTML file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render MHTML file in C#" + content: | + With GroupDocs.Viewer you can render MHTML to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the MHTML file with full path. + 3. Set options to render MHTML file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input MHTML file + string filePath = "input.mhtml"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render MHTML file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "MHTML" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mhtml.es.md b/content/viewer/net/mhtml.es.md new file mode 100644 index 00000000..93179987 --- /dev/null +++ b/content/viewer/net/mhtml.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MHTML API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar MHTML en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "MHTML visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos MHTML en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo MHTML en C#" + content: | + Con GroupDocs.Viewer puede renderizar MHTML a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo MHTML con la ruta completa. + 3. Configure opciones para representar el archivo MHTML en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada MHTML + string filePath = "input.mhtml"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo MHTML a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "MHTML" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mhtml.fa.md b/content/viewer/net/mhtml.fa.md new file mode 100644 index 00000000..8904274c --- /dev/null +++ b/content/viewer/net/mhtml.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MHTML بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش MHTML در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل MHTML برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل MHTML در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل MHTML در C#" + content: | + با GroupDocs.Viewer می‌توانید MHTML را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل MHTML را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل MHTML در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی MHTML را تنظیم کنید + string filePath = "input.mhtml"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل MHTML را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "MHTML" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mhtml.fr.md b/content/viewer/net/mhtml.fr.md new file mode 100644 index 00000000..b80a8a55 --- /dev/null +++ b/content/viewer/net/mhtml.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET MHTML - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher MHTML dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "MHTML visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier MHTML dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier MHTML dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer MHTML au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier MHTML avec le chemin complet. + 3. Définissez les options pour restituer le fichier MHTML au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée MHTML + string filePath = "input.mhtml"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier MHTML au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "MHTML" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mhtml.id.md b/content/viewer/net/mhtml.id.md new file mode 100644 index 00000000..979f23e1 --- /dev/null +++ b/content/viewer/net/mhtml.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MHTML Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan MHTML di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "MHTML penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file MHTML dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file MHTML di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender MHTML ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file MHTML dengan path lengkap. + 3. Tetapkan opsi untuk merender file MHTML ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan MHTML + string filePath = "input.mhtml"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file MHTML ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "MHTML" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mhtml.it.md b/content/viewer/net/mhtml.it.md new file mode 100644 index 00000000..f2e5af1f --- /dev/null +++ b/content/viewer/net/mhtml.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET MHTML: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare MHTML in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file MHTML per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file MHTML in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file MHTML in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di MHTML in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file MHTML con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file MHTML nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input MHTML + string filePath = "input.mhtml"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file MHTML in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "MHTML" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mhtml.ja.md b/content/viewer/net/mhtml.ja.md new file mode 100644 index 00000000..dfc8c153 --- /dev/null +++ b/content/viewer/net/mhtml.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MHTML ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで MHTML を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の MHTML ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで MHTML ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で MHTML ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で MHTML を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、MHTML ファイルをフルパスでロードします。 + 3. MHTML ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 MHTML ファイルを設定する + string filePath = "input.mhtml"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた MHTML ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "MHTML" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mhtml.ko.md b/content/viewer/net/mhtml.ko.md new file mode 100644 index 00000000..25261ae1 --- /dev/null +++ b/content/viewer/net/mhtml.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MHTML 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 MHTML을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 MHTML 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 MHTML 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 MHTML 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 MHTML을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 MHTML 파일을 로드합니다. + 3. MHTML 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 MHTML 파일 설정 + string filePath = "input.mhtml"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 MHTML 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "MHTML" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mhtml.pt.md b/content/viewer/net/mhtml.pt.md new file mode 100644 index 00000000..663e8222 --- /dev/null +++ b/content/viewer/net/mhtml.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MHTML API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir MHTML em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos MHTML para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos MHTML em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo MHTML em C#" + content: | + Com GroupDocs.Viewer você pode renderizar MHTML para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo MHTML com caminho completo. + 3. Defina opções para renderizar o arquivo MHTML em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada MHTML + string filePath = "input.mhtml"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo MHTML em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "MHTML" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mhtml.ru.md b/content/viewer/net/mhtml.ru.md new file mode 100644 index 00000000..e88ac0a8 --- /dev/null +++ b/content/viewer/net/mhtml.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MHTML API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения MHTML в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "MHTML средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла MHTML в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла MHTML в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать MHTML в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл MHTML с полным путем. + 3. Установите параметры для преобразования файла MHTML в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл MHTML + string filePath = "input.mhtml"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл MHTML в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "MHTML" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mhtml.th.md b/content/viewer/net/mhtml.th.md new file mode 100644 index 00000000..d00907e1 --- /dev/null +++ b/content/viewer/net/mhtml.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MHTML Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง MHTML ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ MHTML สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ MHTML ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ MHTML ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล MHTML เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ MHTML ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ MHTML เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต MHTML + string filePath = "input.mhtml"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ MHTML เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "MHTML" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mhtml.uk.md b/content/viewer/net/mhtml.uk.md new file mode 100644 index 00000000..26226880 --- /dev/null +++ b/content/viewer/net/mhtml.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MHTML Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення MHTML у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів MHTML для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу MHTML у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу MHTML у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити MHTML у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл MHTML із повним шляхом. + 3. Встановіть параметри для перетворення файлу MHTML у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл MHTML + string filePath = "input.mhtml"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл MHTML у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "MHTML" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mhtml.vi.md b/content/viewer/net/mhtml.vi.md new file mode 100644 index 00000000..44e65b14 --- /dev/null +++ b/content/viewer/net/mhtml.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET MHTML - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị MHTML trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp MHTML dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp MHTML trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp MHTML trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị MHTML thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp MHTML với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp MHTML thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp MHTML đầu vào + string filePath = "input.mhtml"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp MHTML thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "MHTML" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mhtml.zh.md b/content/viewer/net/mhtml.zh.md new file mode 100644 index 00000000..ee4bd16b --- /dev/null +++ b/content/viewer/net/mhtml.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MHTML Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 MHTML。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 MHTML 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 MHTML 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 MHTML 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 MHTML 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 MHTML 文件。 + 3. 设置选项以将 MHTML 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 MHTML 文件 + string filePath = "input.mhtml"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 MHTML 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "MHTML" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ml.de.md b/content/viewer/net/ml.de.md new file mode 100644 index 00000000..71286634 --- /dev/null +++ b/content/viewer/net/ml.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ML Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von ML in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "ML Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von ML-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der ML-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie ML in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei ML mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei ML im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei ML ein + string filePath = "input.ml"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei ML mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "ML" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ml.en.md b/content/viewer/net/ml.en.md new file mode 100644 index 00000000..53193258 --- /dev/null +++ b/content/viewer/net/ml.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ML Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display ML in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "ML file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display ML file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render ML file in C#" + content: | + With GroupDocs.Viewer you can render ML to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the ML file with full path. + 3. Set options to render ML file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input ML file + string filePath = "input.ml"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render ML file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "ML" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ml.es.md b/content/viewer/net/ml.es.md new file mode 100644 index 00000000..ec2f824b --- /dev/null +++ b/content/viewer/net/ml.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ML API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar ML en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "ML visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos ML en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo ML en C#" + content: | + Con GroupDocs.Viewer puede renderizar ML a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo ML con la ruta completa. + 3. Configure opciones para representar el archivo ML en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada ML + string filePath = "input.ml"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo ML a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "ML" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ml.fa.md b/content/viewer/net/ml.fa.md new file mode 100644 index 00000000..4be01fb5 --- /dev/null +++ b/content/viewer/net/ml.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ML بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش ML در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل ML برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل ML در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل ML در C#" + content: | + با GroupDocs.Viewer می‌توانید ML را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل ML را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل ML در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی ML را تنظیم کنید + string filePath = "input.ml"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل ML را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "ML" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ml.fr.md b/content/viewer/net/ml.fr.md new file mode 100644 index 00000000..0b0b74c3 --- /dev/null +++ b/content/viewer/net/ml.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET ML - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher ML dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "ML visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier ML dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier ML dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer ML au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier ML avec le chemin complet. + 3. Définissez les options pour restituer le fichier ML au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée ML + string filePath = "input.ml"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier ML au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "ML" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ml.id.md b/content/viewer/net/ml.id.md new file mode 100644 index 00000000..c573708c --- /dev/null +++ b/content/viewer/net/ml.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ML Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan ML di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "ML penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file ML dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file ML di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender ML ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file ML dengan path lengkap. + 3. Tetapkan opsi untuk merender file ML ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan ML + string filePath = "input.ml"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file ML ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "ML" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ml.it.md b/content/viewer/net/ml.it.md new file mode 100644 index 00000000..6bcd38d6 --- /dev/null +++ b/content/viewer/net/ml.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET ML: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare ML in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file ML per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file ML in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file ML in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di ML in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file ML con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file ML nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input ML + string filePath = "input.ml"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file ML in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "ML" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ml.ja.md b/content/viewer/net/ml.ja.md new file mode 100644 index 00000000..b462e887 --- /dev/null +++ b/content/viewer/net/ml.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ML ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで ML を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の ML ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで ML ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で ML ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で ML を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、ML ファイルをフルパスでロードします。 + 3. ML ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 ML ファイルを設定する + string filePath = "input.ml"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた ML ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "ML" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ml.ko.md b/content/viewer/net/ml.ko.md new file mode 100644 index 00000000..d0c29949 --- /dev/null +++ b/content/viewer/net/ml.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ML 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 ML을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 ML 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 ML 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 ML 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 ML을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 ML 파일을 로드합니다. + 3. ML 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 ML 파일 설정 + string filePath = "input.ml"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 ML 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "ML" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ml.pt.md b/content/viewer/net/ml.pt.md new file mode 100644 index 00000000..b92172d5 --- /dev/null +++ b/content/viewer/net/ml.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ML API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir ML em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos ML para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos ML em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo ML em C#" + content: | + Com GroupDocs.Viewer você pode renderizar ML para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo ML com caminho completo. + 3. Defina opções para renderizar o arquivo ML em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada ML + string filePath = "input.ml"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo ML em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "ML" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ml.ru.md b/content/viewer/net/ml.ru.md new file mode 100644 index 00000000..3b2b57ad --- /dev/null +++ b/content/viewer/net/ml.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ML API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения ML в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "ML средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла ML в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла ML в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать ML в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл ML с полным путем. + 3. Установите параметры для преобразования файла ML в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл ML + string filePath = "input.ml"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл ML в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "ML" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ml.th.md b/content/viewer/net/ml.th.md new file mode 100644 index 00000000..8d94e017 --- /dev/null +++ b/content/viewer/net/ml.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ML Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง ML ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ ML สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ ML ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ ML ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล ML เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ ML ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ ML เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต ML + string filePath = "input.ml"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ ML เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "ML" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ml.uk.md b/content/viewer/net/ml.uk.md new file mode 100644 index 00000000..2a6b0e62 --- /dev/null +++ b/content/viewer/net/ml.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ML Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення ML у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів ML для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу ML у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу ML у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити ML у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл ML із повним шляхом. + 3. Встановіть параметри для перетворення файлу ML у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл ML + string filePath = "input.ml"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл ML у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "ML" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ml.vi.md b/content/viewer/net/ml.vi.md new file mode 100644 index 00000000..64e9d23c --- /dev/null +++ b/content/viewer/net/ml.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET ML - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị ML trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp ML dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp ML trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp ML trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị ML thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp ML với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp ML thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp ML đầu vào + string filePath = "input.ml"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp ML thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "ML" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ml.zh.md b/content/viewer/net/ml.zh.md new file mode 100644 index 00000000..1f0ffabf --- /dev/null +++ b/content/viewer/net/ml.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ML Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 ML。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 ML 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 ML 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 ML 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 ML 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 ML 文件。 + 3. 设置选项以将 ML 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 ML 文件 + string filePath = "input.ml"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 ML 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "ML" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mm.de.md b/content/viewer/net/mm.de.md new file mode 100644 index 00000000..2ba4be7a --- /dev/null +++ b/content/viewer/net/mm.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MM Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von MM in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "MM Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von MM-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der MM-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie MM in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei MM mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei MM im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei MM ein + string filePath = "input.mm"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei MM mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "MM" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mm.en.md b/content/viewer/net/mm.en.md new file mode 100644 index 00000000..b6971edf --- /dev/null +++ b/content/viewer/net/mm.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MM Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display MM in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "MM file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display MM file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render MM file in C#" + content: | + With GroupDocs.Viewer you can render MM to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the MM file with full path. + 3. Set options to render MM file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input MM file + string filePath = "input.mm"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render MM file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "MM" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mm.es.md b/content/viewer/net/mm.es.md new file mode 100644 index 00000000..47df07d4 --- /dev/null +++ b/content/viewer/net/mm.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MM API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar MM en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "MM visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos MM en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo MM en C#" + content: | + Con GroupDocs.Viewer puede renderizar MM a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo MM con la ruta completa. + 3. Configure opciones para representar el archivo MM en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada MM + string filePath = "input.mm"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo MM a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "MM" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mm.fa.md b/content/viewer/net/mm.fa.md new file mode 100644 index 00000000..8fc1ebef --- /dev/null +++ b/content/viewer/net/mm.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MM بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش MM در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل MM برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل MM در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل MM در C#" + content: | + با GroupDocs.Viewer می‌توانید MM را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل MM را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل MM در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی MM را تنظیم کنید + string filePath = "input.mm"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل MM را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "MM" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mm.fr.md b/content/viewer/net/mm.fr.md new file mode 100644 index 00000000..b454a3a6 --- /dev/null +++ b/content/viewer/net/mm.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET MM - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher MM dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "MM visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier MM dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier MM dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer MM au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier MM avec le chemin complet. + 3. Définissez les options pour restituer le fichier MM au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée MM + string filePath = "input.mm"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier MM au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "MM" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mm.id.md b/content/viewer/net/mm.id.md new file mode 100644 index 00000000..36da8be8 --- /dev/null +++ b/content/viewer/net/mm.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MM Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan MM di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "MM penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file MM dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file MM di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender MM ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file MM dengan path lengkap. + 3. Tetapkan opsi untuk merender file MM ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan MM + string filePath = "input.mm"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file MM ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "MM" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mm.it.md b/content/viewer/net/mm.it.md new file mode 100644 index 00000000..af875119 --- /dev/null +++ b/content/viewer/net/mm.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET MM: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare MM in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file MM per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file MM in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file MM in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di MM in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file MM con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file MM nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input MM + string filePath = "input.mm"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file MM in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "MM" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mm.ja.md b/content/viewer/net/mm.ja.md new file mode 100644 index 00000000..d1af91a6 --- /dev/null +++ b/content/viewer/net/mm.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MM ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで MM を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の MM ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで MM ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で MM ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で MM を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、MM ファイルをフルパスでロードします。 + 3. MM ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 MM ファイルを設定する + string filePath = "input.mm"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた MM ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "MM" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mm.ko.md b/content/viewer/net/mm.ko.md new file mode 100644 index 00000000..47ed5cd5 --- /dev/null +++ b/content/viewer/net/mm.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MM 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 MM을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 MM 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 MM 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 MM 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 MM을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 MM 파일을 로드합니다. + 3. MM 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 MM 파일 설정 + string filePath = "input.mm"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 MM 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "MM" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mm.pt.md b/content/viewer/net/mm.pt.md new file mode 100644 index 00000000..5068c2b1 --- /dev/null +++ b/content/viewer/net/mm.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MM API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir MM em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos MM para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos MM em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo MM em C#" + content: | + Com GroupDocs.Viewer você pode renderizar MM para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo MM com caminho completo. + 3. Defina opções para renderizar o arquivo MM em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada MM + string filePath = "input.mm"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo MM em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "MM" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mm.ru.md b/content/viewer/net/mm.ru.md new file mode 100644 index 00000000..d6406cab --- /dev/null +++ b/content/viewer/net/mm.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MM API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения MM в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "MM средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла MM в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла MM в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать MM в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл MM с полным путем. + 3. Установите параметры для преобразования файла MM в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл MM + string filePath = "input.mm"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл MM в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "MM" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mm.th.md b/content/viewer/net/mm.th.md new file mode 100644 index 00000000..016d7c23 --- /dev/null +++ b/content/viewer/net/mm.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MM Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง MM ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ MM สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ MM ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ MM ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล MM เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ MM ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ MM เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต MM + string filePath = "input.mm"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ MM เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "MM" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mm.uk.md b/content/viewer/net/mm.uk.md new file mode 100644 index 00000000..c8bb3999 --- /dev/null +++ b/content/viewer/net/mm.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MM Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення MM у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів MM для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу MM у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу MM у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити MM у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл MM із повним шляхом. + 3. Встановіть параметри для перетворення файлу MM у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл MM + string filePath = "input.mm"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл MM у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "MM" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mm.vi.md b/content/viewer/net/mm.vi.md new file mode 100644 index 00000000..ff5788f5 --- /dev/null +++ b/content/viewer/net/mm.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET MM - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị MM trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp MM dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp MM trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp MM trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị MM thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp MM với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp MM thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp MM đầu vào + string filePath = "input.mm"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp MM thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "MM" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mm.zh.md b/content/viewer/net/mm.zh.md new file mode 100644 index 00000000..8aac8ca9 --- /dev/null +++ b/content/viewer/net/mm.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MM Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 MM。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 MM 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 MM 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 MM 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 MM 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 MM 文件。 + 3. 设置选项以将 MM 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 MM 文件 + string filePath = "input.mm"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 MM 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "MM" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mobi.de.md b/content/viewer/net/mobi.de.md new file mode 100644 index 00000000..41b7e9c0 --- /dev/null +++ b/content/viewer/net/mobi.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MOBI Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von MOBI in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "MOBI Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von MOBI-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der MOBI-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie MOBI in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei MOBI mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei MOBI im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei MOBI ein + string filePath = "input.mobi"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei MOBI mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "MOBI" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mobi.en.md b/content/viewer/net/mobi.en.md new file mode 100644 index 00000000..83c86d8a --- /dev/null +++ b/content/viewer/net/mobi.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MOBI Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display MOBI in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "MOBI file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display MOBI file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render MOBI file in C#" + content: | + With GroupDocs.Viewer you can render MOBI to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the MOBI file with full path. + 3. Set options to render MOBI file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input MOBI file + string filePath = "input.mobi"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render MOBI file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "MOBI" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mobi.es.md b/content/viewer/net/mobi.es.md new file mode 100644 index 00000000..f40b7a40 --- /dev/null +++ b/content/viewer/net/mobi.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MOBI API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar MOBI en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "MOBI visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos MOBI en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo MOBI en C#" + content: | + Con GroupDocs.Viewer puede renderizar MOBI a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo MOBI con la ruta completa. + 3. Configure opciones para representar el archivo MOBI en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada MOBI + string filePath = "input.mobi"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo MOBI a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "MOBI" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mobi.fa.md b/content/viewer/net/mobi.fa.md new file mode 100644 index 00000000..f21f81ff --- /dev/null +++ b/content/viewer/net/mobi.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MOBI بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش MOBI در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل MOBI برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل MOBI در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل MOBI در C#" + content: | + با GroupDocs.Viewer می‌توانید MOBI را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل MOBI را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل MOBI در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی MOBI را تنظیم کنید + string filePath = "input.mobi"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل MOBI را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "MOBI" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mobi.fr.md b/content/viewer/net/mobi.fr.md new file mode 100644 index 00000000..765adf66 --- /dev/null +++ b/content/viewer/net/mobi.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET MOBI - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher MOBI dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "MOBI visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier MOBI dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier MOBI dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer MOBI au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier MOBI avec le chemin complet. + 3. Définissez les options pour restituer le fichier MOBI au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée MOBI + string filePath = "input.mobi"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier MOBI au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "MOBI" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mobi.id.md b/content/viewer/net/mobi.id.md new file mode 100644 index 00000000..3e95a898 --- /dev/null +++ b/content/viewer/net/mobi.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MOBI Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan MOBI di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "MOBI penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file MOBI dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file MOBI di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender MOBI ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file MOBI dengan path lengkap. + 3. Tetapkan opsi untuk merender file MOBI ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan MOBI + string filePath = "input.mobi"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file MOBI ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "MOBI" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mobi.it.md b/content/viewer/net/mobi.it.md new file mode 100644 index 00000000..e97dd5ad --- /dev/null +++ b/content/viewer/net/mobi.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET MOBI: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare MOBI in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file MOBI per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file MOBI in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file MOBI in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di MOBI in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file MOBI con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file MOBI nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input MOBI + string filePath = "input.mobi"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file MOBI in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "MOBI" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mobi.ja.md b/content/viewer/net/mobi.ja.md new file mode 100644 index 00000000..5db3173b --- /dev/null +++ b/content/viewer/net/mobi.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MOBI ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで MOBI を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の MOBI ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで MOBI ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で MOBI ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で MOBI を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、MOBI ファイルをフルパスでロードします。 + 3. MOBI ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 MOBI ファイルを設定する + string filePath = "input.mobi"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた MOBI ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "MOBI" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mobi.ko.md b/content/viewer/net/mobi.ko.md new file mode 100644 index 00000000..4fb5f560 --- /dev/null +++ b/content/viewer/net/mobi.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MOBI 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 MOBI을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 MOBI 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 MOBI 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 MOBI 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 MOBI을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 MOBI 파일을 로드합니다. + 3. MOBI 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 MOBI 파일 설정 + string filePath = "input.mobi"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 MOBI 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "MOBI" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mobi.pt.md b/content/viewer/net/mobi.pt.md new file mode 100644 index 00000000..144b86da --- /dev/null +++ b/content/viewer/net/mobi.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MOBI API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir MOBI em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos MOBI para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos MOBI em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo MOBI em C#" + content: | + Com GroupDocs.Viewer você pode renderizar MOBI para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo MOBI com caminho completo. + 3. Defina opções para renderizar o arquivo MOBI em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada MOBI + string filePath = "input.mobi"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo MOBI em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "MOBI" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mobi.ru.md b/content/viewer/net/mobi.ru.md new file mode 100644 index 00000000..567d7555 --- /dev/null +++ b/content/viewer/net/mobi.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MOBI API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения MOBI в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "MOBI средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла MOBI в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла MOBI в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать MOBI в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл MOBI с полным путем. + 3. Установите параметры для преобразования файла MOBI в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл MOBI + string filePath = "input.mobi"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл MOBI в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "MOBI" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mobi.th.md b/content/viewer/net/mobi.th.md new file mode 100644 index 00000000..263e3089 --- /dev/null +++ b/content/viewer/net/mobi.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MOBI Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง MOBI ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ MOBI สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ MOBI ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ MOBI ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล MOBI เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ MOBI ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ MOBI เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต MOBI + string filePath = "input.mobi"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ MOBI เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "MOBI" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mobi.uk.md b/content/viewer/net/mobi.uk.md new file mode 100644 index 00000000..adc0ffa6 --- /dev/null +++ b/content/viewer/net/mobi.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MOBI Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення MOBI у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів MOBI для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу MOBI у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу MOBI у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити MOBI у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл MOBI із повним шляхом. + 3. Встановіть параметри для перетворення файлу MOBI у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл MOBI + string filePath = "input.mobi"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл MOBI у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "MOBI" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mobi.vi.md b/content/viewer/net/mobi.vi.md new file mode 100644 index 00000000..ec555309 --- /dev/null +++ b/content/viewer/net/mobi.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET MOBI - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị MOBI trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp MOBI dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp MOBI trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp MOBI trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị MOBI thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp MOBI với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp MOBI thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp MOBI đầu vào + string filePath = "input.mobi"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp MOBI thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "MOBI" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mobi.zh.md b/content/viewer/net/mobi.zh.md new file mode 100644 index 00000000..7420f50f --- /dev/null +++ b/content/viewer/net/mobi.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MOBI Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 MOBI。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 MOBI 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 MOBI 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 MOBI 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 MOBI 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 MOBI 文件。 + 3. 设置选项以将 MOBI 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 MOBI 文件 + string filePath = "input.mobi"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 MOBI 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "MOBI" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpp.de.md b/content/viewer/net/mpp.de.md new file mode 100644 index 00000000..d1fa3e5b --- /dev/null +++ b/content/viewer/net/mpp.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPP Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von MPP in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "MPP Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von MPP-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der MPP-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie MPP in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei MPP mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei MPP im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei MPP ein + string filePath = "input.mpp"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei MPP mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "MPP" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpp.en.md b/content/viewer/net/mpp.en.md new file mode 100644 index 00000000..60bea70f --- /dev/null +++ b/content/viewer/net/mpp.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPP Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display MPP in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "MPP file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display MPP file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render MPP file in C#" + content: | + With GroupDocs.Viewer you can render MPP to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the MPP file with full path. + 3. Set options to render MPP file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input MPP file + string filePath = "input.mpp"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render MPP file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "MPP" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpp.es.md b/content/viewer/net/mpp.es.md new file mode 100644 index 00000000..01715cfa --- /dev/null +++ b/content/viewer/net/mpp.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPP API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar MPP en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "MPP visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos MPP en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo MPP en C#" + content: | + Con GroupDocs.Viewer puede renderizar MPP a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo MPP con la ruta completa. + 3. Configure opciones para representar el archivo MPP en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada MPP + string filePath = "input.mpp"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo MPP a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "MPP" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpp.fa.md b/content/viewer/net/mpp.fa.md new file mode 100644 index 00000000..b2874aa5 --- /dev/null +++ b/content/viewer/net/mpp.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPP بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش MPP در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل MPP برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل MPP در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل MPP در C#" + content: | + با GroupDocs.Viewer می‌توانید MPP را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل MPP را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل MPP در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی MPP را تنظیم کنید + string filePath = "input.mpp"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل MPP را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "MPP" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpp.fr.md b/content/viewer/net/mpp.fr.md new file mode 100644 index 00000000..92ad76c8 --- /dev/null +++ b/content/viewer/net/mpp.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET MPP - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher MPP dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "MPP visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier MPP dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier MPP dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer MPP au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier MPP avec le chemin complet. + 3. Définissez les options pour restituer le fichier MPP au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée MPP + string filePath = "input.mpp"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier MPP au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "MPP" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpp.id.md b/content/viewer/net/mpp.id.md new file mode 100644 index 00000000..c940a2d9 --- /dev/null +++ b/content/viewer/net/mpp.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPP Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan MPP di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "MPP penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file MPP dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file MPP di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender MPP ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file MPP dengan path lengkap. + 3. Tetapkan opsi untuk merender file MPP ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan MPP + string filePath = "input.mpp"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file MPP ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "MPP" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpp.it.md b/content/viewer/net/mpp.it.md new file mode 100644 index 00000000..2e7c5b70 --- /dev/null +++ b/content/viewer/net/mpp.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET MPP: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare MPP in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file MPP per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file MPP in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file MPP in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di MPP in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file MPP con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file MPP nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input MPP + string filePath = "input.mpp"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file MPP in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "MPP" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpp.ja.md b/content/viewer/net/mpp.ja.md new file mode 100644 index 00000000..83489020 --- /dev/null +++ b/content/viewer/net/mpp.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPP ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで MPP を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の MPP ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで MPP ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で MPP ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で MPP を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、MPP ファイルをフルパスでロードします。 + 3. MPP ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 MPP ファイルを設定する + string filePath = "input.mpp"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた MPP ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "MPP" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpp.ko.md b/content/viewer/net/mpp.ko.md new file mode 100644 index 00000000..52682ad2 --- /dev/null +++ b/content/viewer/net/mpp.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPP 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 MPP을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 MPP 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 MPP 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 MPP 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 MPP을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 MPP 파일을 로드합니다. + 3. MPP 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 MPP 파일 설정 + string filePath = "input.mpp"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 MPP 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "MPP" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpp.pt.md b/content/viewer/net/mpp.pt.md new file mode 100644 index 00000000..11bc428d --- /dev/null +++ b/content/viewer/net/mpp.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPP API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir MPP em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos MPP para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos MPP em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo MPP em C#" + content: | + Com GroupDocs.Viewer você pode renderizar MPP para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo MPP com caminho completo. + 3. Defina opções para renderizar o arquivo MPP em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada MPP + string filePath = "input.mpp"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo MPP em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "MPP" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpp.ru.md b/content/viewer/net/mpp.ru.md new file mode 100644 index 00000000..1098bc4d --- /dev/null +++ b/content/viewer/net/mpp.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPP API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения MPP в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "MPP средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла MPP в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла MPP в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать MPP в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл MPP с полным путем. + 3. Установите параметры для преобразования файла MPP в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл MPP + string filePath = "input.mpp"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл MPP в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "MPP" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpp.th.md b/content/viewer/net/mpp.th.md new file mode 100644 index 00000000..4f19b190 --- /dev/null +++ b/content/viewer/net/mpp.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPP Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง MPP ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ MPP สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ MPP ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ MPP ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล MPP เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ MPP ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ MPP เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต MPP + string filePath = "input.mpp"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ MPP เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "MPP" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpp.uk.md b/content/viewer/net/mpp.uk.md new file mode 100644 index 00000000..914ff204 --- /dev/null +++ b/content/viewer/net/mpp.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPP Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення MPP у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів MPP для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу MPP у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу MPP у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити MPP у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл MPP із повним шляхом. + 3. Встановіть параметри для перетворення файлу MPP у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл MPP + string filePath = "input.mpp"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл MPP у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "MPP" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpp.vi.md b/content/viewer/net/mpp.vi.md new file mode 100644 index 00000000..775ffc10 --- /dev/null +++ b/content/viewer/net/mpp.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET MPP - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị MPP trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp MPP dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp MPP trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp MPP trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị MPP thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp MPP với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp MPP thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp MPP đầu vào + string filePath = "input.mpp"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp MPP thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "MPP" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpp.zh.md b/content/viewer/net/mpp.zh.md new file mode 100644 index 00000000..7a811cbf --- /dev/null +++ b/content/viewer/net/mpp.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPP Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 MPP。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 MPP 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 MPP 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 MPP 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 MPP 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 MPP 文件。 + 3. 设置选项以将 MPP 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 MPP 文件 + string filePath = "input.mpp"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 MPP 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "MPP" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpt.de.md b/content/viewer/net/mpt.de.md new file mode 100644 index 00000000..9bf9aea2 --- /dev/null +++ b/content/viewer/net/mpt.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPT Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von MPT in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "MPT Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von MPT-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der MPT-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie MPT in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei MPT mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei MPT im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei MPT ein + string filePath = "input.mpt"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei MPT mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "MPT" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpt.en.md b/content/viewer/net/mpt.en.md new file mode 100644 index 00000000..f36d361f --- /dev/null +++ b/content/viewer/net/mpt.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPT Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display MPT in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "MPT file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display MPT file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render MPT file in C#" + content: | + With GroupDocs.Viewer you can render MPT to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the MPT file with full path. + 3. Set options to render MPT file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input MPT file + string filePath = "input.mpt"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render MPT file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "MPT" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpt.es.md b/content/viewer/net/mpt.es.md new file mode 100644 index 00000000..610f5946 --- /dev/null +++ b/content/viewer/net/mpt.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPT API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar MPT en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "MPT visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos MPT en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo MPT en C#" + content: | + Con GroupDocs.Viewer puede renderizar MPT a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo MPT con la ruta completa. + 3. Configure opciones para representar el archivo MPT en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada MPT + string filePath = "input.mpt"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo MPT a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "MPT" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpt.fa.md b/content/viewer/net/mpt.fa.md new file mode 100644 index 00000000..2bdaf781 --- /dev/null +++ b/content/viewer/net/mpt.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPT بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش MPT در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل MPT برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل MPT در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل MPT در C#" + content: | + با GroupDocs.Viewer می‌توانید MPT را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل MPT را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل MPT در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی MPT را تنظیم کنید + string filePath = "input.mpt"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل MPT را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "MPT" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpt.fr.md b/content/viewer/net/mpt.fr.md new file mode 100644 index 00000000..854995d8 --- /dev/null +++ b/content/viewer/net/mpt.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET MPT - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher MPT dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "MPT visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier MPT dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier MPT dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer MPT au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier MPT avec le chemin complet. + 3. Définissez les options pour restituer le fichier MPT au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée MPT + string filePath = "input.mpt"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier MPT au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "MPT" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpt.id.md b/content/viewer/net/mpt.id.md new file mode 100644 index 00000000..55aa4ccb --- /dev/null +++ b/content/viewer/net/mpt.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPT Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan MPT di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "MPT penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file MPT dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file MPT di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender MPT ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file MPT dengan path lengkap. + 3. Tetapkan opsi untuk merender file MPT ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan MPT + string filePath = "input.mpt"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file MPT ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "MPT" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpt.it.md b/content/viewer/net/mpt.it.md new file mode 100644 index 00000000..78920c9d --- /dev/null +++ b/content/viewer/net/mpt.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET MPT: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare MPT in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file MPT per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file MPT in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file MPT in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di MPT in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file MPT con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file MPT nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input MPT + string filePath = "input.mpt"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file MPT in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "MPT" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpt.ja.md b/content/viewer/net/mpt.ja.md new file mode 100644 index 00000000..ad86fb60 --- /dev/null +++ b/content/viewer/net/mpt.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPT ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで MPT を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の MPT ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで MPT ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で MPT ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で MPT を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、MPT ファイルをフルパスでロードします。 + 3. MPT ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 MPT ファイルを設定する + string filePath = "input.mpt"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた MPT ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "MPT" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpt.ko.md b/content/viewer/net/mpt.ko.md new file mode 100644 index 00000000..dbea67ed --- /dev/null +++ b/content/viewer/net/mpt.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPT 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 MPT을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 MPT 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 MPT 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 MPT 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 MPT을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 MPT 파일을 로드합니다. + 3. MPT 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 MPT 파일 설정 + string filePath = "input.mpt"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 MPT 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "MPT" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpt.pt.md b/content/viewer/net/mpt.pt.md new file mode 100644 index 00000000..ad90a626 --- /dev/null +++ b/content/viewer/net/mpt.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPT API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir MPT em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos MPT para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos MPT em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo MPT em C#" + content: | + Com GroupDocs.Viewer você pode renderizar MPT para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo MPT com caminho completo. + 3. Defina opções para renderizar o arquivo MPT em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada MPT + string filePath = "input.mpt"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo MPT em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "MPT" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpt.ru.md b/content/viewer/net/mpt.ru.md new file mode 100644 index 00000000..85bcf6fc --- /dev/null +++ b/content/viewer/net/mpt.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPT API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения MPT в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "MPT средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла MPT в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла MPT в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать MPT в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл MPT с полным путем. + 3. Установите параметры для преобразования файла MPT в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл MPT + string filePath = "input.mpt"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл MPT в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "MPT" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpt.th.md b/content/viewer/net/mpt.th.md new file mode 100644 index 00000000..068227c8 --- /dev/null +++ b/content/viewer/net/mpt.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPT Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง MPT ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ MPT สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ MPT ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ MPT ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล MPT เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ MPT ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ MPT เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต MPT + string filePath = "input.mpt"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ MPT เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "MPT" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpt.uk.md b/content/viewer/net/mpt.uk.md new file mode 100644 index 00000000..9283d997 --- /dev/null +++ b/content/viewer/net/mpt.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPT Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення MPT у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів MPT для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу MPT у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу MPT у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити MPT у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл MPT із повним шляхом. + 3. Встановіть параметри для перетворення файлу MPT у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл MPT + string filePath = "input.mpt"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл MPT у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "MPT" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpt.vi.md b/content/viewer/net/mpt.vi.md new file mode 100644 index 00000000..4b051187 --- /dev/null +++ b/content/viewer/net/mpt.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET MPT - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị MPT trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp MPT dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp MPT trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp MPT trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị MPT thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp MPT với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp MPT thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp MPT đầu vào + string filePath = "input.mpt"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp MPT thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "MPT" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpt.zh.md b/content/viewer/net/mpt.zh.md new file mode 100644 index 00000000..8127aed9 --- /dev/null +++ b/content/viewer/net/mpt.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPT Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 MPT。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 MPT 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 MPT 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 MPT 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 MPT 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 MPT 文件。 + 3. 设置选项以将 MPT 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 MPT 文件 + string filePath = "input.mpt"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 MPT 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "MPT" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpx.de.md b/content/viewer/net/mpx.de.md new file mode 100644 index 00000000..365f5f59 --- /dev/null +++ b/content/viewer/net/mpx.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPX Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von MPX in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "MPX Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von MPX-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der MPX-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie MPX in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei MPX mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei MPX im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei MPX ein + string filePath = "input.mpx"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei MPX mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "MPX" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpx.en.md b/content/viewer/net/mpx.en.md new file mode 100644 index 00000000..3bc68994 --- /dev/null +++ b/content/viewer/net/mpx.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPX Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display MPX in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "MPX file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display MPX file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render MPX file in C#" + content: | + With GroupDocs.Viewer you can render MPX to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the MPX file with full path. + 3. Set options to render MPX file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input MPX file + string filePath = "input.mpx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render MPX file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "MPX" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpx.es.md b/content/viewer/net/mpx.es.md new file mode 100644 index 00000000..38f39290 --- /dev/null +++ b/content/viewer/net/mpx.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPX API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar MPX en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "MPX visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos MPX en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo MPX en C#" + content: | + Con GroupDocs.Viewer puede renderizar MPX a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo MPX con la ruta completa. + 3. Configure opciones para representar el archivo MPX en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada MPX + string filePath = "input.mpx"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo MPX a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "MPX" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpx.fa.md b/content/viewer/net/mpx.fa.md new file mode 100644 index 00000000..45b0ef25 --- /dev/null +++ b/content/viewer/net/mpx.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPX بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش MPX در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل MPX برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل MPX در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل MPX در C#" + content: | + با GroupDocs.Viewer می‌توانید MPX را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل MPX را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل MPX در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی MPX را تنظیم کنید + string filePath = "input.mpx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل MPX را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "MPX" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpx.fr.md b/content/viewer/net/mpx.fr.md new file mode 100644 index 00000000..a7f5e3ec --- /dev/null +++ b/content/viewer/net/mpx.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET MPX - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher MPX dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "MPX visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier MPX dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier MPX dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer MPX au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier MPX avec le chemin complet. + 3. Définissez les options pour restituer le fichier MPX au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée MPX + string filePath = "input.mpx"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier MPX au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "MPX" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpx.id.md b/content/viewer/net/mpx.id.md new file mode 100644 index 00000000..8b529586 --- /dev/null +++ b/content/viewer/net/mpx.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPX Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan MPX di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "MPX penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file MPX dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file MPX di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender MPX ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file MPX dengan path lengkap. + 3. Tetapkan opsi untuk merender file MPX ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan MPX + string filePath = "input.mpx"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file MPX ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "MPX" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpx.it.md b/content/viewer/net/mpx.it.md new file mode 100644 index 00000000..0f676f37 --- /dev/null +++ b/content/viewer/net/mpx.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET MPX: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare MPX in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file MPX per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file MPX in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file MPX in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di MPX in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file MPX con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file MPX nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input MPX + string filePath = "input.mpx"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file MPX in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "MPX" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpx.ja.md b/content/viewer/net/mpx.ja.md new file mode 100644 index 00000000..74f341f0 --- /dev/null +++ b/content/viewer/net/mpx.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPX ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで MPX を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の MPX ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで MPX ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で MPX ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で MPX を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、MPX ファイルをフルパスでロードします。 + 3. MPX ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 MPX ファイルを設定する + string filePath = "input.mpx"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた MPX ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "MPX" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpx.ko.md b/content/viewer/net/mpx.ko.md new file mode 100644 index 00000000..ca58ce56 --- /dev/null +++ b/content/viewer/net/mpx.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPX 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 MPX을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 MPX 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 MPX 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 MPX 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 MPX을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 MPX 파일을 로드합니다. + 3. MPX 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 MPX 파일 설정 + string filePath = "input.mpx"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 MPX 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "MPX" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpx.pt.md b/content/viewer/net/mpx.pt.md new file mode 100644 index 00000000..8b156c49 --- /dev/null +++ b/content/viewer/net/mpx.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPX API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir MPX em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos MPX para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos MPX em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo MPX em C#" + content: | + Com GroupDocs.Viewer você pode renderizar MPX para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo MPX com caminho completo. + 3. Defina opções para renderizar o arquivo MPX em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada MPX + string filePath = "input.mpx"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo MPX em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "MPX" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpx.ru.md b/content/viewer/net/mpx.ru.md new file mode 100644 index 00000000..1abd1f4e --- /dev/null +++ b/content/viewer/net/mpx.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPX API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения MPX в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "MPX средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла MPX в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла MPX в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать MPX в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл MPX с полным путем. + 3. Установите параметры для преобразования файла MPX в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл MPX + string filePath = "input.mpx"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл MPX в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "MPX" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpx.th.md b/content/viewer/net/mpx.th.md new file mode 100644 index 00000000..24442811 --- /dev/null +++ b/content/viewer/net/mpx.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPX Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง MPX ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ MPX สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ MPX ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ MPX ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล MPX เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ MPX ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ MPX เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต MPX + string filePath = "input.mpx"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ MPX เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "MPX" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpx.uk.md b/content/viewer/net/mpx.uk.md new file mode 100644 index 00000000..db5ef420 --- /dev/null +++ b/content/viewer/net/mpx.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPX Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення MPX у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів MPX для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу MPX у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу MPX у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити MPX у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл MPX із повним шляхом. + 3. Встановіть параметри для перетворення файлу MPX у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл MPX + string filePath = "input.mpx"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл MPX у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "MPX" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpx.vi.md b/content/viewer/net/mpx.vi.md new file mode 100644 index 00000000..f7489803 --- /dev/null +++ b/content/viewer/net/mpx.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET MPX - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị MPX trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp MPX dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp MPX trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp MPX trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị MPX thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp MPX với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp MPX thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp MPX đầu vào + string filePath = "input.mpx"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp MPX thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "MPX" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/mpx.zh.md b/content/viewer/net/mpx.zh.md new file mode 100644 index 00000000..8aafc36e --- /dev/null +++ b/content/viewer/net/mpx.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MPX Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 MPX。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 MPX 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 MPX 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 MPX 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 MPX 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 MPX 文件。 + 3. 设置选项以将 MPX 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 MPX 文件 + string filePath = "input.mpx"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 MPX 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "MPX" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/msg.de.md b/content/viewer/net/msg.de.md new file mode 100644 index 00000000..137483fc --- /dev/null +++ b/content/viewer/net/msg.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MSG Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von MSG in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "MSG Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von MSG-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der MSG-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie MSG in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei MSG mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei MSG im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei MSG ein + string filePath = "input.msg"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei MSG mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "MSG" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/msg.en.md b/content/viewer/net/msg.en.md new file mode 100644 index 00000000..1a726a41 --- /dev/null +++ b/content/viewer/net/msg.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MSG Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display MSG in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "MSG file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display MSG file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render MSG file in C#" + content: | + With GroupDocs.Viewer you can render MSG to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the MSG file with full path. + 3. Set options to render MSG file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input MSG file + string filePath = "input.msg"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render MSG file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "MSG" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/msg.es.md b/content/viewer/net/msg.es.md new file mode 100644 index 00000000..e74f4df9 --- /dev/null +++ b/content/viewer/net/msg.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MSG API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar MSG en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "MSG visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos MSG en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo MSG en C#" + content: | + Con GroupDocs.Viewer puede renderizar MSG a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo MSG con la ruta completa. + 3. Configure opciones para representar el archivo MSG en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada MSG + string filePath = "input.msg"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo MSG a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "MSG" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/msg.fa.md b/content/viewer/net/msg.fa.md new file mode 100644 index 00000000..9ceb34c6 --- /dev/null +++ b/content/viewer/net/msg.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MSG بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش MSG در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل MSG برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل MSG در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل MSG در C#" + content: | + با GroupDocs.Viewer می‌توانید MSG را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل MSG را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل MSG در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی MSG را تنظیم کنید + string filePath = "input.msg"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل MSG را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "MSG" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/msg.fr.md b/content/viewer/net/msg.fr.md new file mode 100644 index 00000000..56d1fd81 --- /dev/null +++ b/content/viewer/net/msg.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET MSG - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher MSG dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "MSG visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier MSG dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier MSG dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer MSG au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier MSG avec le chemin complet. + 3. Définissez les options pour restituer le fichier MSG au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée MSG + string filePath = "input.msg"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier MSG au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "MSG" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/msg.id.md b/content/viewer/net/msg.id.md new file mode 100644 index 00000000..545275f4 --- /dev/null +++ b/content/viewer/net/msg.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MSG Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan MSG di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "MSG penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file MSG dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file MSG di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender MSG ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file MSG dengan path lengkap. + 3. Tetapkan opsi untuk merender file MSG ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan MSG + string filePath = "input.msg"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file MSG ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "MSG" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/msg.it.md b/content/viewer/net/msg.it.md new file mode 100644 index 00000000..ea7f5406 --- /dev/null +++ b/content/viewer/net/msg.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET MSG: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare MSG in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file MSG per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file MSG in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file MSG in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di MSG in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file MSG con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file MSG nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input MSG + string filePath = "input.msg"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file MSG in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "MSG" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/msg.ja.md b/content/viewer/net/msg.ja.md new file mode 100644 index 00000000..43ba6ea0 --- /dev/null +++ b/content/viewer/net/msg.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MSG ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで MSG を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の MSG ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで MSG ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で MSG ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で MSG を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、MSG ファイルをフルパスでロードします。 + 3. MSG ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 MSG ファイルを設定する + string filePath = "input.msg"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた MSG ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "MSG" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/msg.ko.md b/content/viewer/net/msg.ko.md new file mode 100644 index 00000000..1340a30a --- /dev/null +++ b/content/viewer/net/msg.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MSG 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 MSG을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 MSG 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 MSG 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 MSG 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 MSG을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 MSG 파일을 로드합니다. + 3. MSG 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 MSG 파일 설정 + string filePath = "input.msg"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 MSG 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "MSG" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/msg.pt.md b/content/viewer/net/msg.pt.md new file mode 100644 index 00000000..5cc3e9f9 --- /dev/null +++ b/content/viewer/net/msg.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MSG API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir MSG em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos MSG para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos MSG em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo MSG em C#" + content: | + Com GroupDocs.Viewer você pode renderizar MSG para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo MSG com caminho completo. + 3. Defina opções para renderizar o arquivo MSG em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada MSG + string filePath = "input.msg"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo MSG em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "MSG" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/msg.ru.md b/content/viewer/net/msg.ru.md new file mode 100644 index 00000000..2a49aa75 --- /dev/null +++ b/content/viewer/net/msg.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MSG API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения MSG в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "MSG средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла MSG в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла MSG в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать MSG в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл MSG с полным путем. + 3. Установите параметры для преобразования файла MSG в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл MSG + string filePath = "input.msg"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл MSG в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "MSG" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/msg.th.md b/content/viewer/net/msg.th.md new file mode 100644 index 00000000..a0a84361 --- /dev/null +++ b/content/viewer/net/msg.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MSG Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง MSG ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ MSG สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ MSG ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ MSG ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล MSG เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ MSG ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ MSG เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต MSG + string filePath = "input.msg"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ MSG เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "MSG" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/msg.uk.md b/content/viewer/net/msg.uk.md new file mode 100644 index 00000000..446060e1 --- /dev/null +++ b/content/viewer/net/msg.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MSG Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення MSG у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів MSG для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу MSG у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу MSG у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити MSG у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл MSG із повним шляхом. + 3. Встановіть параметри для перетворення файлу MSG у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл MSG + string filePath = "input.msg"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл MSG у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "MSG" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/msg.vi.md b/content/viewer/net/msg.vi.md new file mode 100644 index 00000000..9fa1cf9c --- /dev/null +++ b/content/viewer/net/msg.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET MSG - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị MSG trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp MSG dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp MSG trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp MSG trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị MSG thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp MSG với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp MSG thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp MSG đầu vào + string filePath = "input.msg"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp MSG thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "MSG" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/msg.zh.md b/content/viewer/net/msg.zh.md new file mode 100644 index 00000000..e38785c3 --- /dev/null +++ b/content/viewer/net/msg.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET MSG Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 MSG。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 MSG 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 MSG 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 MSG 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 MSG 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 MSG 文件。 + 3. 设置选项以将 MSG 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 MSG 文件 + string filePath = "input.msg"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 MSG 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "MSG" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/nsf.de.md b/content/viewer/net/nsf.de.md new file mode 100644 index 00000000..b0affbe2 --- /dev/null +++ b/content/viewer/net/nsf.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET NSF Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von NSF in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "NSF Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von NSF-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der NSF-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie NSF in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei NSF mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei NSF im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei NSF ein + string filePath = "input.nsf"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei NSF mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "NSF" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/nsf.en.md b/content/viewer/net/nsf.en.md new file mode 100644 index 00000000..1e836546 --- /dev/null +++ b/content/viewer/net/nsf.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET NSF Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display NSF in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "NSF file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display NSF file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render NSF file in C#" + content: | + With GroupDocs.Viewer you can render NSF to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the NSF file with full path. + 3. Set options to render NSF file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input NSF file + string filePath = "input.nsf"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render NSF file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "NSF" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/nsf.es.md b/content/viewer/net/nsf.es.md new file mode 100644 index 00000000..71d15b2c --- /dev/null +++ b/content/viewer/net/nsf.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET NSF API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar NSF en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "NSF visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos NSF en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo NSF en C#" + content: | + Con GroupDocs.Viewer puede renderizar NSF a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo NSF con la ruta completa. + 3. Configure opciones para representar el archivo NSF en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada NSF + string filePath = "input.nsf"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo NSF a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "NSF" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/nsf.fa.md b/content/viewer/net/nsf.fa.md new file mode 100644 index 00000000..7b0fa63f --- /dev/null +++ b/content/viewer/net/nsf.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET NSF بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش NSF در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل NSF برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل NSF در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل NSF در C#" + content: | + با GroupDocs.Viewer می‌توانید NSF را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل NSF را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل NSF در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی NSF را تنظیم کنید + string filePath = "input.nsf"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل NSF را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "NSF" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/nsf.fr.md b/content/viewer/net/nsf.fr.md new file mode 100644 index 00000000..dfbc75fe --- /dev/null +++ b/content/viewer/net/nsf.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET NSF - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher NSF dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "NSF visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier NSF dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier NSF dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer NSF au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier NSF avec le chemin complet. + 3. Définissez les options pour restituer le fichier NSF au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée NSF + string filePath = "input.nsf"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier NSF au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "NSF" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/nsf.id.md b/content/viewer/net/nsf.id.md new file mode 100644 index 00000000..27aae1ea --- /dev/null +++ b/content/viewer/net/nsf.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET NSF Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan NSF di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "NSF penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file NSF dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file NSF di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender NSF ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file NSF dengan path lengkap. + 3. Tetapkan opsi untuk merender file NSF ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan NSF + string filePath = "input.nsf"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file NSF ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "NSF" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/nsf.it.md b/content/viewer/net/nsf.it.md new file mode 100644 index 00000000..663fcd2d --- /dev/null +++ b/content/viewer/net/nsf.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET NSF: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare NSF in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file NSF per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file NSF in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file NSF in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di NSF in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file NSF con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file NSF nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input NSF + string filePath = "input.nsf"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file NSF in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "NSF" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/nsf.ja.md b/content/viewer/net/nsf.ja.md new file mode 100644 index 00000000..afac4412 --- /dev/null +++ b/content/viewer/net/nsf.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET NSF ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで NSF を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の NSF ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで NSF ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で NSF ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で NSF を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、NSF ファイルをフルパスでロードします。 + 3. NSF ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 NSF ファイルを設定する + string filePath = "input.nsf"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた NSF ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "NSF" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/nsf.ko.md b/content/viewer/net/nsf.ko.md new file mode 100644 index 00000000..bf11a5bf --- /dev/null +++ b/content/viewer/net/nsf.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET NSF 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 NSF을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 NSF 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 NSF 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 NSF 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 NSF을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 NSF 파일을 로드합니다. + 3. NSF 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 NSF 파일 설정 + string filePath = "input.nsf"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 NSF 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "NSF" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/nsf.pt.md b/content/viewer/net/nsf.pt.md new file mode 100644 index 00000000..8d91a920 --- /dev/null +++ b/content/viewer/net/nsf.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET NSF API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir NSF em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos NSF para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos NSF em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo NSF em C#" + content: | + Com GroupDocs.Viewer você pode renderizar NSF para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo NSF com caminho completo. + 3. Defina opções para renderizar o arquivo NSF em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada NSF + string filePath = "input.nsf"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo NSF em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "NSF" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/nsf.ru.md b/content/viewer/net/nsf.ru.md new file mode 100644 index 00000000..993c0489 --- /dev/null +++ b/content/viewer/net/nsf.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET NSF API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения NSF в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "NSF средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла NSF в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла NSF в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать NSF в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл NSF с полным путем. + 3. Установите параметры для преобразования файла NSF в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл NSF + string filePath = "input.nsf"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл NSF в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "NSF" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/nsf.th.md b/content/viewer/net/nsf.th.md new file mode 100644 index 00000000..b6f6befe --- /dev/null +++ b/content/viewer/net/nsf.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET NSF Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง NSF ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ NSF สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ NSF ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ NSF ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล NSF เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ NSF ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ NSF เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต NSF + string filePath = "input.nsf"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ NSF เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "NSF" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/nsf.uk.md b/content/viewer/net/nsf.uk.md new file mode 100644 index 00000000..16f2a68c --- /dev/null +++ b/content/viewer/net/nsf.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET NSF Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення NSF у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів NSF для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу NSF у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу NSF у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити NSF у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл NSF із повним шляхом. + 3. Встановіть параметри для перетворення файлу NSF у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл NSF + string filePath = "input.nsf"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл NSF у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "NSF" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/nsf.vi.md b/content/viewer/net/nsf.vi.md new file mode 100644 index 00000000..78e52cfd --- /dev/null +++ b/content/viewer/net/nsf.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET NSF - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị NSF trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp NSF dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp NSF trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp NSF trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị NSF thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp NSF với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp NSF thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp NSF đầu vào + string filePath = "input.nsf"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp NSF thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "NSF" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/nsf.zh.md b/content/viewer/net/nsf.zh.md new file mode 100644 index 00000000..73157d81 --- /dev/null +++ b/content/viewer/net/nsf.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET NSF Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 NSF。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 NSF 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 NSF 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 NSF 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 NSF 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 NSF 文件。 + 3. 设置选项以将 NSF 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 NSF 文件 + string filePath = "input.nsf"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 NSF 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "NSF" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/numbers.de.md b/content/viewer/net/numbers.de.md new file mode 100644 index 00000000..174d7fec --- /dev/null +++ b/content/viewer/net/numbers.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET NUMBERS Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von NUMBERS in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "NUMBERS Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von NUMBERS-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der NUMBERS-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie NUMBERS in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei NUMBERS mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei NUMBERS im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei NUMBERS ein + string filePath = "input.numbers"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei NUMBERS mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "NUMBERS" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/numbers.en.md b/content/viewer/net/numbers.en.md new file mode 100644 index 00000000..9d16c48b --- /dev/null +++ b/content/viewer/net/numbers.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET NUMBERS Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display NUMBERS in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "NUMBERS file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display NUMBERS file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render NUMBERS file in C#" + content: | + With GroupDocs.Viewer you can render NUMBERS to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the NUMBERS file with full path. + 3. Set options to render NUMBERS file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input NUMBERS file + string filePath = "input.numbers"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render NUMBERS file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "NUMBERS" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/numbers.es.md b/content/viewer/net/numbers.es.md new file mode 100644 index 00000000..21735e27 --- /dev/null +++ b/content/viewer/net/numbers.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET NUMBERS API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar NUMBERS en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "NUMBERS visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos NUMBERS en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo NUMBERS en C#" + content: | + Con GroupDocs.Viewer puede renderizar NUMBERS a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo NUMBERS con la ruta completa. + 3. Configure opciones para representar el archivo NUMBERS en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada NUMBERS + string filePath = "input.numbers"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo NUMBERS a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "NUMBERS" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/numbers.fa.md b/content/viewer/net/numbers.fa.md new file mode 100644 index 00000000..6a928a10 --- /dev/null +++ b/content/viewer/net/numbers.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET NUMBERS بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش NUMBERS در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل NUMBERS برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل NUMBERS در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل NUMBERS در C#" + content: | + با GroupDocs.Viewer می‌توانید NUMBERS را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل NUMBERS را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل NUMBERS در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی NUMBERS را تنظیم کنید + string filePath = "input.numbers"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل NUMBERS را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "NUMBERS" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/numbers.fr.md b/content/viewer/net/numbers.fr.md new file mode 100644 index 00000000..c66cf4a4 --- /dev/null +++ b/content/viewer/net/numbers.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET NUMBERS - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher NUMBERS dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "NUMBERS visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier NUMBERS dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier NUMBERS dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer NUMBERS au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier NUMBERS avec le chemin complet. + 3. Définissez les options pour restituer le fichier NUMBERS au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée NUMBERS + string filePath = "input.numbers"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier NUMBERS au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "NUMBERS" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/numbers.id.md b/content/viewer/net/numbers.id.md new file mode 100644 index 00000000..0de7eb0b --- /dev/null +++ b/content/viewer/net/numbers.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET NUMBERS Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan NUMBERS di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "NUMBERS penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file NUMBERS dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file NUMBERS di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender NUMBERS ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file NUMBERS dengan path lengkap. + 3. Tetapkan opsi untuk merender file NUMBERS ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan NUMBERS + string filePath = "input.numbers"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file NUMBERS ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "NUMBERS" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/numbers.it.md b/content/viewer/net/numbers.it.md new file mode 100644 index 00000000..3d242a4a --- /dev/null +++ b/content/viewer/net/numbers.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET NUMBERS: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare NUMBERS in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file NUMBERS per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file NUMBERS in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file NUMBERS in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di NUMBERS in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file NUMBERS con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file NUMBERS nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input NUMBERS + string filePath = "input.numbers"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file NUMBERS in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "NUMBERS" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/numbers.ja.md b/content/viewer/net/numbers.ja.md new file mode 100644 index 00000000..3655074e --- /dev/null +++ b/content/viewer/net/numbers.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET NUMBERS ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで NUMBERS を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の NUMBERS ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで NUMBERS ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で NUMBERS ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で NUMBERS を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、NUMBERS ファイルをフルパスでロードします。 + 3. NUMBERS ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 NUMBERS ファイルを設定する + string filePath = "input.numbers"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた NUMBERS ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "NUMBERS" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/numbers.ko.md b/content/viewer/net/numbers.ko.md new file mode 100644 index 00000000..8f270942 --- /dev/null +++ b/content/viewer/net/numbers.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET NUMBERS 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 NUMBERS을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 NUMBERS 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 NUMBERS 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 NUMBERS 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 NUMBERS을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 NUMBERS 파일을 로드합니다. + 3. NUMBERS 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 NUMBERS 파일 설정 + string filePath = "input.numbers"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 NUMBERS 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "NUMBERS" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/numbers.pt.md b/content/viewer/net/numbers.pt.md new file mode 100644 index 00000000..b1006e85 --- /dev/null +++ b/content/viewer/net/numbers.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET NUMBERS API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir NUMBERS em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos NUMBERS para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos NUMBERS em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo NUMBERS em C#" + content: | + Com GroupDocs.Viewer você pode renderizar NUMBERS para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo NUMBERS com caminho completo. + 3. Defina opções para renderizar o arquivo NUMBERS em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada NUMBERS + string filePath = "input.numbers"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo NUMBERS em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "NUMBERS" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/numbers.ru.md b/content/viewer/net/numbers.ru.md new file mode 100644 index 00000000..ec039aac --- /dev/null +++ b/content/viewer/net/numbers.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET NUMBERS API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения NUMBERS в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "NUMBERS средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла NUMBERS в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла NUMBERS в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать NUMBERS в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл NUMBERS с полным путем. + 3. Установите параметры для преобразования файла NUMBERS в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл NUMBERS + string filePath = "input.numbers"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл NUMBERS в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "NUMBERS" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/numbers.th.md b/content/viewer/net/numbers.th.md new file mode 100644 index 00000000..bbb8cec0 --- /dev/null +++ b/content/viewer/net/numbers.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET NUMBERS Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง NUMBERS ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ NUMBERS สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ NUMBERS ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ NUMBERS ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล NUMBERS เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ NUMBERS ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ NUMBERS เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต NUMBERS + string filePath = "input.numbers"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ NUMBERS เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "NUMBERS" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/numbers.uk.md b/content/viewer/net/numbers.uk.md new file mode 100644 index 00000000..6160dbad --- /dev/null +++ b/content/viewer/net/numbers.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET NUMBERS Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення NUMBERS у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів NUMBERS для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу NUMBERS у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу NUMBERS у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити NUMBERS у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл NUMBERS із повним шляхом. + 3. Встановіть параметри для перетворення файлу NUMBERS у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл NUMBERS + string filePath = "input.numbers"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл NUMBERS у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "NUMBERS" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/numbers.vi.md b/content/viewer/net/numbers.vi.md new file mode 100644 index 00000000..59c1b45c --- /dev/null +++ b/content/viewer/net/numbers.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET NUMBERS - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị NUMBERS trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp NUMBERS dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp NUMBERS trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp NUMBERS trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị NUMBERS thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp NUMBERS với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp NUMBERS thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp NUMBERS đầu vào + string filePath = "input.numbers"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp NUMBERS thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "NUMBERS" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/numbers.zh.md b/content/viewer/net/numbers.zh.md new file mode 100644 index 00000000..c83b3270 --- /dev/null +++ b/content/viewer/net/numbers.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET NUMBERS Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 NUMBERS。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 NUMBERS 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 NUMBERS 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 NUMBERS 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 NUMBERS 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 NUMBERS 文件。 + 3. 设置选项以将 NUMBERS 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 NUMBERS 文件 + string filePath = "input.numbers"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 NUMBERS 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "NUMBERS" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/obj.de.md b/content/viewer/net/obj.de.md new file mode 100644 index 00000000..27fc7bd3 --- /dev/null +++ b/content/viewer/net/obj.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OBJ Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von OBJ in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "OBJ Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von OBJ-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der OBJ-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie OBJ in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei OBJ mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei OBJ im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei OBJ ein + string filePath = "input.obj"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei OBJ mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "OBJ" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/obj.en.md b/content/viewer/net/obj.en.md new file mode 100644 index 00000000..a12ce9c2 --- /dev/null +++ b/content/viewer/net/obj.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OBJ Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display OBJ in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "OBJ file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display OBJ file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render OBJ file in C#" + content: | + With GroupDocs.Viewer you can render OBJ to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the OBJ file with full path. + 3. Set options to render OBJ file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input OBJ file + string filePath = "input.obj"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render OBJ file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "OBJ" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/obj.es.md b/content/viewer/net/obj.es.md new file mode 100644 index 00000000..5c9efd2b --- /dev/null +++ b/content/viewer/net/obj.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OBJ API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar OBJ en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "OBJ visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos OBJ en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo OBJ en C#" + content: | + Con GroupDocs.Viewer puede renderizar OBJ a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo OBJ con la ruta completa. + 3. Configure opciones para representar el archivo OBJ en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada OBJ + string filePath = "input.obj"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo OBJ a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "OBJ" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/obj.fa.md b/content/viewer/net/obj.fa.md new file mode 100644 index 00000000..302260ef --- /dev/null +++ b/content/viewer/net/obj.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OBJ بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش OBJ در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل OBJ برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل OBJ در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل OBJ در C#" + content: | + با GroupDocs.Viewer می‌توانید OBJ را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل OBJ را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل OBJ در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی OBJ را تنظیم کنید + string filePath = "input.obj"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل OBJ را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "OBJ" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/obj.fr.md b/content/viewer/net/obj.fr.md new file mode 100644 index 00000000..b37abd27 --- /dev/null +++ b/content/viewer/net/obj.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET OBJ - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher OBJ dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "OBJ visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier OBJ dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier OBJ dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer OBJ au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier OBJ avec le chemin complet. + 3. Définissez les options pour restituer le fichier OBJ au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée OBJ + string filePath = "input.obj"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier OBJ au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "OBJ" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/obj.id.md b/content/viewer/net/obj.id.md new file mode 100644 index 00000000..3ca9294d --- /dev/null +++ b/content/viewer/net/obj.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OBJ Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan OBJ di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "OBJ penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file OBJ dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file OBJ di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender OBJ ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file OBJ dengan path lengkap. + 3. Tetapkan opsi untuk merender file OBJ ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan OBJ + string filePath = "input.obj"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file OBJ ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "OBJ" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/obj.it.md b/content/viewer/net/obj.it.md new file mode 100644 index 00000000..afd1524f --- /dev/null +++ b/content/viewer/net/obj.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET OBJ: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare OBJ in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file OBJ per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file OBJ in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file OBJ in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di OBJ in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file OBJ con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file OBJ nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input OBJ + string filePath = "input.obj"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file OBJ in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "OBJ" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/obj.ja.md b/content/viewer/net/obj.ja.md new file mode 100644 index 00000000..3abe5284 --- /dev/null +++ b/content/viewer/net/obj.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OBJ ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで OBJ を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の OBJ ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで OBJ ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で OBJ ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で OBJ を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、OBJ ファイルをフルパスでロードします。 + 3. OBJ ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 OBJ ファイルを設定する + string filePath = "input.obj"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた OBJ ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "OBJ" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/obj.ko.md b/content/viewer/net/obj.ko.md new file mode 100644 index 00000000..68341dc8 --- /dev/null +++ b/content/viewer/net/obj.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OBJ 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 OBJ을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 OBJ 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 OBJ 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 OBJ 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 OBJ을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 OBJ 파일을 로드합니다. + 3. OBJ 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 OBJ 파일 설정 + string filePath = "input.obj"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 OBJ 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "OBJ" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/obj.pt.md b/content/viewer/net/obj.pt.md new file mode 100644 index 00000000..61fb24c4 --- /dev/null +++ b/content/viewer/net/obj.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OBJ API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir OBJ em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos OBJ para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos OBJ em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo OBJ em C#" + content: | + Com GroupDocs.Viewer você pode renderizar OBJ para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo OBJ com caminho completo. + 3. Defina opções para renderizar o arquivo OBJ em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada OBJ + string filePath = "input.obj"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo OBJ em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "OBJ" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/obj.ru.md b/content/viewer/net/obj.ru.md new file mode 100644 index 00000000..688208cc --- /dev/null +++ b/content/viewer/net/obj.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OBJ API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения OBJ в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "OBJ средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла OBJ в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла OBJ в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать OBJ в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл OBJ с полным путем. + 3. Установите параметры для преобразования файла OBJ в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл OBJ + string filePath = "input.obj"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл OBJ в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "OBJ" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/obj.th.md b/content/viewer/net/obj.th.md new file mode 100644 index 00000000..3f092db3 --- /dev/null +++ b/content/viewer/net/obj.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OBJ Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง OBJ ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ OBJ สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ OBJ ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ OBJ ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล OBJ เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ OBJ ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ OBJ เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต OBJ + string filePath = "input.obj"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ OBJ เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "OBJ" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/obj.uk.md b/content/viewer/net/obj.uk.md new file mode 100644 index 00000000..7191a41b --- /dev/null +++ b/content/viewer/net/obj.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OBJ Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення OBJ у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів OBJ для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу OBJ у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу OBJ у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити OBJ у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл OBJ із повним шляхом. + 3. Встановіть параметри для перетворення файлу OBJ у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл OBJ + string filePath = "input.obj"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл OBJ у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "OBJ" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/obj.vi.md b/content/viewer/net/obj.vi.md new file mode 100644 index 00000000..d351acf3 --- /dev/null +++ b/content/viewer/net/obj.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET OBJ - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị OBJ trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp OBJ dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp OBJ trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp OBJ trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị OBJ thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp OBJ với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp OBJ thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp OBJ đầu vào + string filePath = "input.obj"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp OBJ thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "OBJ" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/obj.zh.md b/content/viewer/net/obj.zh.md new file mode 100644 index 00000000..fcd38c6a --- /dev/null +++ b/content/viewer/net/obj.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OBJ Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 OBJ。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 OBJ 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 OBJ 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 OBJ 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 OBJ 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 OBJ 文件。 + 3. 设置选项以将 OBJ 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 OBJ 文件 + string filePath = "input.obj"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 OBJ 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "OBJ" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odg.de.md b/content/viewer/net/odg.de.md new file mode 100644 index 00000000..f9f07e3a --- /dev/null +++ b/content/viewer/net/odg.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODG Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von ODG in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "ODG Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von ODG-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der ODG-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie ODG in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei ODG mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei ODG im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei ODG ein + string filePath = "input.odg"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei ODG mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "ODG" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odg.en.md b/content/viewer/net/odg.en.md new file mode 100644 index 00000000..cc1a7012 --- /dev/null +++ b/content/viewer/net/odg.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODG Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display ODG in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "ODG file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display ODG file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render ODG file in C#" + content: | + With GroupDocs.Viewer you can render ODG to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the ODG file with full path. + 3. Set options to render ODG file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input ODG file + string filePath = "input.odg"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render ODG file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "ODG" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odg.es.md b/content/viewer/net/odg.es.md new file mode 100644 index 00000000..e58a842a --- /dev/null +++ b/content/viewer/net/odg.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODG API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar ODG en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "ODG visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos ODG en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo ODG en C#" + content: | + Con GroupDocs.Viewer puede renderizar ODG a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo ODG con la ruta completa. + 3. Configure opciones para representar el archivo ODG en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada ODG + string filePath = "input.odg"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo ODG a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "ODG" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odg.fa.md b/content/viewer/net/odg.fa.md new file mode 100644 index 00000000..ec3e10e1 --- /dev/null +++ b/content/viewer/net/odg.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODG بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش ODG در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل ODG برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل ODG در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل ODG در C#" + content: | + با GroupDocs.Viewer می‌توانید ODG را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل ODG را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل ODG در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی ODG را تنظیم کنید + string filePath = "input.odg"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل ODG را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "ODG" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odg.fr.md b/content/viewer/net/odg.fr.md new file mode 100644 index 00000000..ae525c05 --- /dev/null +++ b/content/viewer/net/odg.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET ODG - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher ODG dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "ODG visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier ODG dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier ODG dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer ODG au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier ODG avec le chemin complet. + 3. Définissez les options pour restituer le fichier ODG au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée ODG + string filePath = "input.odg"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier ODG au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "ODG" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odg.id.md b/content/viewer/net/odg.id.md new file mode 100644 index 00000000..71b89195 --- /dev/null +++ b/content/viewer/net/odg.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODG Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan ODG di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "ODG penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file ODG dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file ODG di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender ODG ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file ODG dengan path lengkap. + 3. Tetapkan opsi untuk merender file ODG ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan ODG + string filePath = "input.odg"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file ODG ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "ODG" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odg.it.md b/content/viewer/net/odg.it.md new file mode 100644 index 00000000..117d4fc1 --- /dev/null +++ b/content/viewer/net/odg.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET ODG: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare ODG in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file ODG per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file ODG in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file ODG in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di ODG in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file ODG con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file ODG nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input ODG + string filePath = "input.odg"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file ODG in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "ODG" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odg.ja.md b/content/viewer/net/odg.ja.md new file mode 100644 index 00000000..a755a542 --- /dev/null +++ b/content/viewer/net/odg.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODG ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで ODG を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の ODG ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで ODG ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で ODG ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で ODG を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、ODG ファイルをフルパスでロードします。 + 3. ODG ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 ODG ファイルを設定する + string filePath = "input.odg"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた ODG ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "ODG" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odg.ko.md b/content/viewer/net/odg.ko.md new file mode 100644 index 00000000..8f752ad3 --- /dev/null +++ b/content/viewer/net/odg.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODG 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 ODG을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 ODG 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 ODG 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 ODG 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 ODG을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 ODG 파일을 로드합니다. + 3. ODG 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 ODG 파일 설정 + string filePath = "input.odg"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 ODG 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "ODG" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odg.pt.md b/content/viewer/net/odg.pt.md new file mode 100644 index 00000000..78c174a1 --- /dev/null +++ b/content/viewer/net/odg.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODG API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir ODG em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos ODG para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos ODG em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo ODG em C#" + content: | + Com GroupDocs.Viewer você pode renderizar ODG para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo ODG com caminho completo. + 3. Defina opções para renderizar o arquivo ODG em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada ODG + string filePath = "input.odg"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo ODG em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "ODG" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odg.ru.md b/content/viewer/net/odg.ru.md new file mode 100644 index 00000000..e952f8ff --- /dev/null +++ b/content/viewer/net/odg.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODG API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения ODG в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "ODG средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла ODG в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла ODG в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать ODG в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл ODG с полным путем. + 3. Установите параметры для преобразования файла ODG в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл ODG + string filePath = "input.odg"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл ODG в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "ODG" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odg.th.md b/content/viewer/net/odg.th.md new file mode 100644 index 00000000..9c01be73 --- /dev/null +++ b/content/viewer/net/odg.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODG Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง ODG ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ ODG สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ ODG ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ ODG ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล ODG เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ ODG ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ ODG เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต ODG + string filePath = "input.odg"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ ODG เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "ODG" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odg.uk.md b/content/viewer/net/odg.uk.md new file mode 100644 index 00000000..00f0e2d5 --- /dev/null +++ b/content/viewer/net/odg.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODG Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення ODG у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів ODG для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу ODG у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу ODG у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити ODG у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл ODG із повним шляхом. + 3. Встановіть параметри для перетворення файлу ODG у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл ODG + string filePath = "input.odg"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл ODG у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "ODG" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odg.vi.md b/content/viewer/net/odg.vi.md new file mode 100644 index 00000000..904516f9 --- /dev/null +++ b/content/viewer/net/odg.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET ODG - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị ODG trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp ODG dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp ODG trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp ODG trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị ODG thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp ODG với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp ODG thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp ODG đầu vào + string filePath = "input.odg"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp ODG thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "ODG" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odg.zh.md b/content/viewer/net/odg.zh.md new file mode 100644 index 00000000..4bd2c588 --- /dev/null +++ b/content/viewer/net/odg.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODG Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 ODG。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 ODG 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 ODG 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 ODG 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 ODG 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 ODG 文件。 + 3. 设置选项以将 ODG 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 ODG 文件 + string filePath = "input.odg"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 ODG 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "ODG" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odp.de.md b/content/viewer/net/odp.de.md new file mode 100644 index 00000000..5c4979bc --- /dev/null +++ b/content/viewer/net/odp.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODP Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von ODP in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "ODP Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von ODP-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der ODP-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie ODP in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei ODP mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei ODP im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei ODP ein + string filePath = "input.odp"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei ODP mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "ODP" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odp.en.md b/content/viewer/net/odp.en.md new file mode 100644 index 00000000..39009ea6 --- /dev/null +++ b/content/viewer/net/odp.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODP Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display ODP in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "ODP file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display ODP file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render ODP file in C#" + content: | + With GroupDocs.Viewer you can render ODP to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the ODP file with full path. + 3. Set options to render ODP file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input ODP file + string filePath = "input.odp"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render ODP file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "ODP" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odp.es.md b/content/viewer/net/odp.es.md new file mode 100644 index 00000000..2f3de6a8 --- /dev/null +++ b/content/viewer/net/odp.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODP API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar ODP en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "ODP visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos ODP en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo ODP en C#" + content: | + Con GroupDocs.Viewer puede renderizar ODP a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo ODP con la ruta completa. + 3. Configure opciones para representar el archivo ODP en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada ODP + string filePath = "input.odp"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo ODP a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "ODP" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odp.fa.md b/content/viewer/net/odp.fa.md new file mode 100644 index 00000000..92b1ca29 --- /dev/null +++ b/content/viewer/net/odp.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODP بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش ODP در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل ODP برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل ODP در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل ODP در C#" + content: | + با GroupDocs.Viewer می‌توانید ODP را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل ODP را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل ODP در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی ODP را تنظیم کنید + string filePath = "input.odp"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل ODP را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "ODP" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odp.fr.md b/content/viewer/net/odp.fr.md new file mode 100644 index 00000000..de6d1d28 --- /dev/null +++ b/content/viewer/net/odp.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET ODP - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher ODP dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "ODP visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier ODP dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier ODP dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer ODP au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier ODP avec le chemin complet. + 3. Définissez les options pour restituer le fichier ODP au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée ODP + string filePath = "input.odp"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier ODP au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "ODP" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odp.id.md b/content/viewer/net/odp.id.md new file mode 100644 index 00000000..2dc553e1 --- /dev/null +++ b/content/viewer/net/odp.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODP Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan ODP di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "ODP penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file ODP dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file ODP di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender ODP ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file ODP dengan path lengkap. + 3. Tetapkan opsi untuk merender file ODP ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan ODP + string filePath = "input.odp"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file ODP ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "ODP" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odp.it.md b/content/viewer/net/odp.it.md new file mode 100644 index 00000000..58053042 --- /dev/null +++ b/content/viewer/net/odp.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET ODP: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare ODP in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file ODP per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file ODP in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file ODP in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di ODP in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file ODP con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file ODP nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input ODP + string filePath = "input.odp"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file ODP in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "ODP" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odp.ja.md b/content/viewer/net/odp.ja.md new file mode 100644 index 00000000..ff64f061 --- /dev/null +++ b/content/viewer/net/odp.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODP ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで ODP を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の ODP ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで ODP ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で ODP ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で ODP を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、ODP ファイルをフルパスでロードします。 + 3. ODP ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 ODP ファイルを設定する + string filePath = "input.odp"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた ODP ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "ODP" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odp.ko.md b/content/viewer/net/odp.ko.md new file mode 100644 index 00000000..a7b47089 --- /dev/null +++ b/content/viewer/net/odp.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODP 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 ODP을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 ODP 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 ODP 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 ODP 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 ODP을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 ODP 파일을 로드합니다. + 3. ODP 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 ODP 파일 설정 + string filePath = "input.odp"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 ODP 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "ODP" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odp.pt.md b/content/viewer/net/odp.pt.md new file mode 100644 index 00000000..b8a9fa92 --- /dev/null +++ b/content/viewer/net/odp.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODP API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir ODP em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos ODP para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos ODP em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo ODP em C#" + content: | + Com GroupDocs.Viewer você pode renderizar ODP para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo ODP com caminho completo. + 3. Defina opções para renderizar o arquivo ODP em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada ODP + string filePath = "input.odp"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo ODP em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "ODP" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odp.ru.md b/content/viewer/net/odp.ru.md new file mode 100644 index 00000000..7e0de8fa --- /dev/null +++ b/content/viewer/net/odp.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODP API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения ODP в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "ODP средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла ODP в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла ODP в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать ODP в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл ODP с полным путем. + 3. Установите параметры для преобразования файла ODP в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл ODP + string filePath = "input.odp"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл ODP в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "ODP" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odp.th.md b/content/viewer/net/odp.th.md new file mode 100644 index 00000000..618ea192 --- /dev/null +++ b/content/viewer/net/odp.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODP Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง ODP ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ ODP สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ ODP ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ ODP ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล ODP เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ ODP ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ ODP เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต ODP + string filePath = "input.odp"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ ODP เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "ODP" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odp.uk.md b/content/viewer/net/odp.uk.md new file mode 100644 index 00000000..fd9d15c3 --- /dev/null +++ b/content/viewer/net/odp.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODP Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення ODP у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів ODP для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу ODP у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу ODP у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити ODP у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл ODP із повним шляхом. + 3. Встановіть параметри для перетворення файлу ODP у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл ODP + string filePath = "input.odp"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл ODP у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "ODP" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odp.vi.md b/content/viewer/net/odp.vi.md new file mode 100644 index 00000000..31201373 --- /dev/null +++ b/content/viewer/net/odp.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET ODP - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị ODP trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp ODP dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp ODP trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp ODP trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị ODP thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp ODP với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp ODP thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp ODP đầu vào + string filePath = "input.odp"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp ODP thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "ODP" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odp.zh.md b/content/viewer/net/odp.zh.md new file mode 100644 index 00000000..2d3db027 --- /dev/null +++ b/content/viewer/net/odp.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODP Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 ODP。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 ODP 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 ODP 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 ODP 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 ODP 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 ODP 文件。 + 3. 设置选项以将 ODP 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 ODP 文件 + string filePath = "input.odp"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 ODP 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "ODP" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ods.de.md b/content/viewer/net/ods.de.md new file mode 100644 index 00000000..6732c573 --- /dev/null +++ b/content/viewer/net/ods.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODS Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von ODS in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "ODS Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von ODS-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der ODS-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie ODS in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei ODS mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei ODS im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei ODS ein + string filePath = "input.ods"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei ODS mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "ODS" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ods.en.md b/content/viewer/net/ods.en.md new file mode 100644 index 00000000..f98ffa23 --- /dev/null +++ b/content/viewer/net/ods.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODS Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display ODS in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "ODS file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display ODS file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render ODS file in C#" + content: | + With GroupDocs.Viewer you can render ODS to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the ODS file with full path. + 3. Set options to render ODS file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input ODS file + string filePath = "input.ods"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render ODS file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "ODS" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ods.es.md b/content/viewer/net/ods.es.md new file mode 100644 index 00000000..e0d239d5 --- /dev/null +++ b/content/viewer/net/ods.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODS API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar ODS en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "ODS visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos ODS en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo ODS en C#" + content: | + Con GroupDocs.Viewer puede renderizar ODS a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo ODS con la ruta completa. + 3. Configure opciones para representar el archivo ODS en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada ODS + string filePath = "input.ods"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo ODS a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "ODS" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ods.fa.md b/content/viewer/net/ods.fa.md new file mode 100644 index 00000000..46c61020 --- /dev/null +++ b/content/viewer/net/ods.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODS بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش ODS در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل ODS برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل ODS در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل ODS در C#" + content: | + با GroupDocs.Viewer می‌توانید ODS را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل ODS را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل ODS در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی ODS را تنظیم کنید + string filePath = "input.ods"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل ODS را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "ODS" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ods.fr.md b/content/viewer/net/ods.fr.md new file mode 100644 index 00000000..c613f88d --- /dev/null +++ b/content/viewer/net/ods.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET ODS - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher ODS dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "ODS visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier ODS dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier ODS dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer ODS au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier ODS avec le chemin complet. + 3. Définissez les options pour restituer le fichier ODS au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée ODS + string filePath = "input.ods"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier ODS au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "ODS" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ods.id.md b/content/viewer/net/ods.id.md new file mode 100644 index 00000000..dabe7026 --- /dev/null +++ b/content/viewer/net/ods.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODS Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan ODS di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "ODS penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file ODS dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file ODS di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender ODS ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file ODS dengan path lengkap. + 3. Tetapkan opsi untuk merender file ODS ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan ODS + string filePath = "input.ods"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file ODS ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "ODS" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ods.it.md b/content/viewer/net/ods.it.md new file mode 100644 index 00000000..0e4fd08c --- /dev/null +++ b/content/viewer/net/ods.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET ODS: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare ODS in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file ODS per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file ODS in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file ODS in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di ODS in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file ODS con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file ODS nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input ODS + string filePath = "input.ods"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file ODS in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "ODS" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ods.ja.md b/content/viewer/net/ods.ja.md new file mode 100644 index 00000000..e936e008 --- /dev/null +++ b/content/viewer/net/ods.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODS ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで ODS を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の ODS ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで ODS ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で ODS ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で ODS を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、ODS ファイルをフルパスでロードします。 + 3. ODS ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 ODS ファイルを設定する + string filePath = "input.ods"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた ODS ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "ODS" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ods.ko.md b/content/viewer/net/ods.ko.md new file mode 100644 index 00000000..244f7ac5 --- /dev/null +++ b/content/viewer/net/ods.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODS 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 ODS을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 ODS 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 ODS 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 ODS 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 ODS을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 ODS 파일을 로드합니다. + 3. ODS 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 ODS 파일 설정 + string filePath = "input.ods"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 ODS 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "ODS" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ods.pt.md b/content/viewer/net/ods.pt.md new file mode 100644 index 00000000..89a885fe --- /dev/null +++ b/content/viewer/net/ods.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODS API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir ODS em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos ODS para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos ODS em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo ODS em C#" + content: | + Com GroupDocs.Viewer você pode renderizar ODS para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo ODS com caminho completo. + 3. Defina opções para renderizar o arquivo ODS em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada ODS + string filePath = "input.ods"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo ODS em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "ODS" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ods.ru.md b/content/viewer/net/ods.ru.md new file mode 100644 index 00000000..727d7d8c --- /dev/null +++ b/content/viewer/net/ods.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODS API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения ODS в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "ODS средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла ODS в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла ODS в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать ODS в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл ODS с полным путем. + 3. Установите параметры для преобразования файла ODS в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл ODS + string filePath = "input.ods"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл ODS в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "ODS" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ods.th.md b/content/viewer/net/ods.th.md new file mode 100644 index 00000000..07576b93 --- /dev/null +++ b/content/viewer/net/ods.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODS Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง ODS ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ ODS สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ ODS ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ ODS ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล ODS เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ ODS ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ ODS เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต ODS + string filePath = "input.ods"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ ODS เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "ODS" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ods.uk.md b/content/viewer/net/ods.uk.md new file mode 100644 index 00000000..9d1767ed --- /dev/null +++ b/content/viewer/net/ods.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODS Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення ODS у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів ODS для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу ODS у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу ODS у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити ODS у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл ODS із повним шляхом. + 3. Встановіть параметри для перетворення файлу ODS у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл ODS + string filePath = "input.ods"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл ODS у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "ODS" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ods.vi.md b/content/viewer/net/ods.vi.md new file mode 100644 index 00000000..60b86b5f --- /dev/null +++ b/content/viewer/net/ods.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET ODS - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị ODS trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp ODS dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp ODS trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp ODS trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị ODS thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp ODS với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp ODS thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp ODS đầu vào + string filePath = "input.ods"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp ODS thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "ODS" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ods.zh.md b/content/viewer/net/ods.zh.md new file mode 100644 index 00000000..726f8caf --- /dev/null +++ b/content/viewer/net/ods.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODS Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 ODS。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 ODS 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 ODS 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 ODS 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 ODS 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 ODS 文件。 + 3. 设置选项以将 ODS 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 ODS 文件 + string filePath = "input.ods"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 ODS 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "ODS" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odt.de.md b/content/viewer/net/odt.de.md new file mode 100644 index 00000000..4896f767 --- /dev/null +++ b/content/viewer/net/odt.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODT Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von ODT in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "ODT Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von ODT-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der ODT-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie ODT in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei ODT mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei ODT im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei ODT ein + string filePath = "input.odt"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei ODT mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "ODT" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odt.en.md b/content/viewer/net/odt.en.md new file mode 100644 index 00000000..d07d45ba --- /dev/null +++ b/content/viewer/net/odt.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODT Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display ODT in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "ODT file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display ODT file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render ODT file in C#" + content: | + With GroupDocs.Viewer you can render ODT to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the ODT file with full path. + 3. Set options to render ODT file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input ODT file + string filePath = "input.odt"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render ODT file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "ODT" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odt.es.md b/content/viewer/net/odt.es.md new file mode 100644 index 00000000..56958151 --- /dev/null +++ b/content/viewer/net/odt.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODT API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar ODT en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "ODT visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos ODT en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo ODT en C#" + content: | + Con GroupDocs.Viewer puede renderizar ODT a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo ODT con la ruta completa. + 3. Configure opciones para representar el archivo ODT en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada ODT + string filePath = "input.odt"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo ODT a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "ODT" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odt.fa.md b/content/viewer/net/odt.fa.md new file mode 100644 index 00000000..fa4f3483 --- /dev/null +++ b/content/viewer/net/odt.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODT بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش ODT در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل ODT برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل ODT در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل ODT در C#" + content: | + با GroupDocs.Viewer می‌توانید ODT را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل ODT را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل ODT در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی ODT را تنظیم کنید + string filePath = "input.odt"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل ODT را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "ODT" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odt.fr.md b/content/viewer/net/odt.fr.md new file mode 100644 index 00000000..27697bec --- /dev/null +++ b/content/viewer/net/odt.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET ODT - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher ODT dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "ODT visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier ODT dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier ODT dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer ODT au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier ODT avec le chemin complet. + 3. Définissez les options pour restituer le fichier ODT au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée ODT + string filePath = "input.odt"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier ODT au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "ODT" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odt.id.md b/content/viewer/net/odt.id.md new file mode 100644 index 00000000..009321ed --- /dev/null +++ b/content/viewer/net/odt.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODT Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan ODT di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "ODT penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file ODT dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file ODT di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender ODT ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file ODT dengan path lengkap. + 3. Tetapkan opsi untuk merender file ODT ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan ODT + string filePath = "input.odt"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file ODT ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "ODT" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odt.it.md b/content/viewer/net/odt.it.md new file mode 100644 index 00000000..bf3f5f5e --- /dev/null +++ b/content/viewer/net/odt.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET ODT: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare ODT in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file ODT per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file ODT in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file ODT in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di ODT in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file ODT con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file ODT nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input ODT + string filePath = "input.odt"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file ODT in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "ODT" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odt.ja.md b/content/viewer/net/odt.ja.md new file mode 100644 index 00000000..74cd30cf --- /dev/null +++ b/content/viewer/net/odt.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODT ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで ODT を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の ODT ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで ODT ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で ODT ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で ODT を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、ODT ファイルをフルパスでロードします。 + 3. ODT ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 ODT ファイルを設定する + string filePath = "input.odt"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた ODT ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "ODT" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odt.ko.md b/content/viewer/net/odt.ko.md new file mode 100644 index 00000000..f13e56d0 --- /dev/null +++ b/content/viewer/net/odt.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODT 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 ODT을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 ODT 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 ODT 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 ODT 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 ODT을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 ODT 파일을 로드합니다. + 3. ODT 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 ODT 파일 설정 + string filePath = "input.odt"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 ODT 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "ODT" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odt.pt.md b/content/viewer/net/odt.pt.md new file mode 100644 index 00000000..75a03984 --- /dev/null +++ b/content/viewer/net/odt.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODT API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir ODT em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos ODT para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos ODT em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo ODT em C#" + content: | + Com GroupDocs.Viewer você pode renderizar ODT para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo ODT com caminho completo. + 3. Defina opções para renderizar o arquivo ODT em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada ODT + string filePath = "input.odt"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo ODT em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "ODT" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odt.ru.md b/content/viewer/net/odt.ru.md new file mode 100644 index 00000000..dac601e2 --- /dev/null +++ b/content/viewer/net/odt.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODT API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения ODT в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "ODT средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла ODT в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла ODT в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать ODT в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл ODT с полным путем. + 3. Установите параметры для преобразования файла ODT в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл ODT + string filePath = "input.odt"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл ODT в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "ODT" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odt.th.md b/content/viewer/net/odt.th.md new file mode 100644 index 00000000..b9437536 --- /dev/null +++ b/content/viewer/net/odt.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODT Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง ODT ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ ODT สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ ODT ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ ODT ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล ODT เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ ODT ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ ODT เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต ODT + string filePath = "input.odt"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ ODT เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "ODT" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odt.uk.md b/content/viewer/net/odt.uk.md new file mode 100644 index 00000000..1b65ecec --- /dev/null +++ b/content/viewer/net/odt.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODT Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення ODT у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів ODT для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу ODT у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу ODT у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити ODT у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл ODT із повним шляхом. + 3. Встановіть параметри для перетворення файлу ODT у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл ODT + string filePath = "input.odt"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл ODT у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "ODT" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odt.vi.md b/content/viewer/net/odt.vi.md new file mode 100644 index 00000000..2638f92e --- /dev/null +++ b/content/viewer/net/odt.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET ODT - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị ODT trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp ODT dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp ODT trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp ODT trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị ODT thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp ODT với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp ODT thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp ODT đầu vào + string filePath = "input.odt"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp ODT thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "ODT" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/odt.zh.md b/content/viewer/net/odt.zh.md new file mode 100644 index 00000000..57a4b141 --- /dev/null +++ b/content/viewer/net/odt.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ODT Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 ODT。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 ODT 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 ODT 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 ODT 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 ODT 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 ODT 文件。 + 3. 设置选项以将 ODT 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 ODT 文件 + string filePath = "input.odt"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 ODT 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "ODT" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/one.de.md b/content/viewer/net/one.de.md new file mode 100644 index 00000000..c412ca20 --- /dev/null +++ b/content/viewer/net/one.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ONE Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von ONE in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "ONE Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von ONE-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der ONE-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie ONE in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei ONE mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei ONE im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei ONE ein + string filePath = "input.one"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei ONE mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "ONE" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/one.en.md b/content/viewer/net/one.en.md new file mode 100644 index 00000000..7d9ed4cd --- /dev/null +++ b/content/viewer/net/one.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ONE Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display ONE in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "ONE file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display ONE file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render ONE file in C#" + content: | + With GroupDocs.Viewer you can render ONE to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the ONE file with full path. + 3. Set options to render ONE file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input ONE file + string filePath = "input.one"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render ONE file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "ONE" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/one.es.md b/content/viewer/net/one.es.md new file mode 100644 index 00000000..5a746ee8 --- /dev/null +++ b/content/viewer/net/one.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ONE API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar ONE en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "ONE visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos ONE en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo ONE en C#" + content: | + Con GroupDocs.Viewer puede renderizar ONE a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo ONE con la ruta completa. + 3. Configure opciones para representar el archivo ONE en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada ONE + string filePath = "input.one"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo ONE a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "ONE" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/one.fa.md b/content/viewer/net/one.fa.md new file mode 100644 index 00000000..cb134249 --- /dev/null +++ b/content/viewer/net/one.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ONE بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش ONE در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل ONE برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل ONE در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل ONE در C#" + content: | + با GroupDocs.Viewer می‌توانید ONE را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل ONE را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل ONE در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی ONE را تنظیم کنید + string filePath = "input.one"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل ONE را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "ONE" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/one.fr.md b/content/viewer/net/one.fr.md new file mode 100644 index 00000000..916f82e4 --- /dev/null +++ b/content/viewer/net/one.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET ONE - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher ONE dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "ONE visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier ONE dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier ONE dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer ONE au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier ONE avec le chemin complet. + 3. Définissez les options pour restituer le fichier ONE au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée ONE + string filePath = "input.one"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier ONE au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "ONE" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/one.id.md b/content/viewer/net/one.id.md new file mode 100644 index 00000000..381a1b09 --- /dev/null +++ b/content/viewer/net/one.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ONE Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan ONE di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "ONE penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file ONE dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file ONE di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender ONE ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file ONE dengan path lengkap. + 3. Tetapkan opsi untuk merender file ONE ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan ONE + string filePath = "input.one"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file ONE ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "ONE" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/one.it.md b/content/viewer/net/one.it.md new file mode 100644 index 00000000..2d4e1a1d --- /dev/null +++ b/content/viewer/net/one.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET ONE: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare ONE in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file ONE per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file ONE in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file ONE in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di ONE in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file ONE con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file ONE nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input ONE + string filePath = "input.one"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file ONE in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "ONE" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/one.ja.md b/content/viewer/net/one.ja.md new file mode 100644 index 00000000..68b53cf8 --- /dev/null +++ b/content/viewer/net/one.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ONE ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで ONE を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の ONE ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで ONE ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で ONE ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で ONE を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、ONE ファイルをフルパスでロードします。 + 3. ONE ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 ONE ファイルを設定する + string filePath = "input.one"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた ONE ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "ONE" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/one.ko.md b/content/viewer/net/one.ko.md new file mode 100644 index 00000000..675f764c --- /dev/null +++ b/content/viewer/net/one.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ONE 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 ONE을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 ONE 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 ONE 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 ONE 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 ONE을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 ONE 파일을 로드합니다. + 3. ONE 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 ONE 파일 설정 + string filePath = "input.one"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 ONE 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "ONE" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/one.pt.md b/content/viewer/net/one.pt.md new file mode 100644 index 00000000..5ad25cf8 --- /dev/null +++ b/content/viewer/net/one.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ONE API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir ONE em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos ONE para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos ONE em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo ONE em C#" + content: | + Com GroupDocs.Viewer você pode renderizar ONE para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo ONE com caminho completo. + 3. Defina opções para renderizar o arquivo ONE em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada ONE + string filePath = "input.one"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo ONE em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "ONE" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/one.ru.md b/content/viewer/net/one.ru.md new file mode 100644 index 00000000..cdeb8265 --- /dev/null +++ b/content/viewer/net/one.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ONE API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения ONE в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "ONE средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла ONE в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла ONE в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать ONE в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл ONE с полным путем. + 3. Установите параметры для преобразования файла ONE в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл ONE + string filePath = "input.one"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл ONE в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "ONE" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/one.th.md b/content/viewer/net/one.th.md new file mode 100644 index 00000000..59632fe3 --- /dev/null +++ b/content/viewer/net/one.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ONE Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง ONE ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ ONE สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ ONE ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ ONE ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล ONE เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ ONE ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ ONE เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต ONE + string filePath = "input.one"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ ONE เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "ONE" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/one.uk.md b/content/viewer/net/one.uk.md new file mode 100644 index 00000000..a8e85cf5 --- /dev/null +++ b/content/viewer/net/one.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ONE Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення ONE у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів ONE для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу ONE у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу ONE у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити ONE у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл ONE із повним шляхом. + 3. Встановіть параметри для перетворення файлу ONE у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл ONE + string filePath = "input.one"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл ONE у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "ONE" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/one.vi.md b/content/viewer/net/one.vi.md new file mode 100644 index 00000000..18a0bd1d --- /dev/null +++ b/content/viewer/net/one.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET ONE - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị ONE trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp ONE dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp ONE trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp ONE trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị ONE thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp ONE với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp ONE thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp ONE đầu vào + string filePath = "input.one"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp ONE thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "ONE" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/one.zh.md b/content/viewer/net/one.zh.md new file mode 100644 index 00000000..3e80ba82 --- /dev/null +++ b/content/viewer/net/one.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ONE Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 ONE。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 ONE 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 ONE 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 ONE 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 ONE 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 ONE 文件。 + 3. 设置选项以将 ONE 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 ONE 文件 + string filePath = "input.one"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 ONE 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "ONE" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/onenote.de.md b/content/viewer/net/onenote.de.md new file mode 100644 index 00000000..2e72ac88 --- /dev/null +++ b/content/viewer/net/onenote.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OneNote Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von OneNote in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "OneNote Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von OneNote-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der OneNote-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie OneNote in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei OneNote mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei OneNote im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei OneNote ein + string filePath = "input.one"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei OneNote mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "OneNote" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/onenote.en.md b/content/viewer/net/onenote.en.md new file mode 100644 index 00000000..10a1c94a --- /dev/null +++ b/content/viewer/net/onenote.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OneNote Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display OneNote in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "OneNote file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display OneNote file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render OneNote file in C#" + content: | + With GroupDocs.Viewer you can render OneNote to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the OneNote file with full path. + 3. Set options to render OneNote file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input OneNote file + string filePath = "input.one"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render OneNote file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "OneNote" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/onenote.es.md b/content/viewer/net/onenote.es.md new file mode 100644 index 00000000..005fedf5 --- /dev/null +++ b/content/viewer/net/onenote.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OneNote API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar OneNote en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "OneNote visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos OneNote en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo OneNote en C#" + content: | + Con GroupDocs.Viewer puede renderizar OneNote a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo OneNote con la ruta completa. + 3. Configure opciones para representar el archivo OneNote en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada OneNote + string filePath = "input.one"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo OneNote a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "OneNote" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/onenote.fa.md b/content/viewer/net/onenote.fa.md new file mode 100644 index 00000000..0914e380 --- /dev/null +++ b/content/viewer/net/onenote.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OneNote بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش OneNote در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل OneNote برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل OneNote در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل OneNote در C#" + content: | + با GroupDocs.Viewer می‌توانید OneNote را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل OneNote را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل OneNote در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی OneNote را تنظیم کنید + string filePath = "input.one"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل OneNote را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "OneNote" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/onenote.fr.md b/content/viewer/net/onenote.fr.md new file mode 100644 index 00000000..33722dfe --- /dev/null +++ b/content/viewer/net/onenote.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET OneNote - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher OneNote dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "OneNote visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier OneNote dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier OneNote dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer OneNote au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier OneNote avec le chemin complet. + 3. Définissez les options pour restituer le fichier OneNote au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée OneNote + string filePath = "input.one"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier OneNote au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "OneNote" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/onenote.id.md b/content/viewer/net/onenote.id.md new file mode 100644 index 00000000..e467d746 --- /dev/null +++ b/content/viewer/net/onenote.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OneNote Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan OneNote di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "OneNote penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file OneNote dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file OneNote di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender OneNote ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file OneNote dengan path lengkap. + 3. Tetapkan opsi untuk merender file OneNote ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan OneNote + string filePath = "input.one"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file OneNote ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "OneNote" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/onenote.it.md b/content/viewer/net/onenote.it.md new file mode 100644 index 00000000..90067cf8 --- /dev/null +++ b/content/viewer/net/onenote.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET OneNote: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare OneNote in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file OneNote per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file OneNote in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file OneNote in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di OneNote in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file OneNote con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file OneNote nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input OneNote + string filePath = "input.one"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file OneNote in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "OneNote" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/onenote.ja.md b/content/viewer/net/onenote.ja.md new file mode 100644 index 00000000..587ffb7e --- /dev/null +++ b/content/viewer/net/onenote.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OneNote ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで OneNote を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の OneNote ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで OneNote ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で OneNote ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で OneNote を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、OneNote ファイルをフルパスでロードします。 + 3. OneNote ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 OneNote ファイルを設定する + string filePath = "input.one"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた OneNote ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "OneNote" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/onenote.ko.md b/content/viewer/net/onenote.ko.md new file mode 100644 index 00000000..e539e9a1 --- /dev/null +++ b/content/viewer/net/onenote.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OneNote 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 OneNote을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 OneNote 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 OneNote 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 OneNote 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 OneNote을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 OneNote 파일을 로드합니다. + 3. OneNote 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 OneNote 파일 설정 + string filePath = "input.one"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 OneNote 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "OneNote" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/onenote.pt.md b/content/viewer/net/onenote.pt.md new file mode 100644 index 00000000..6b19869c --- /dev/null +++ b/content/viewer/net/onenote.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OneNote API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir OneNote em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos OneNote para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos OneNote em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo OneNote em C#" + content: | + Com GroupDocs.Viewer você pode renderizar OneNote para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo OneNote com caminho completo. + 3. Defina opções para renderizar o arquivo OneNote em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada OneNote + string filePath = "input.one"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo OneNote em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "OneNote" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/onenote.ru.md b/content/viewer/net/onenote.ru.md new file mode 100644 index 00000000..5b65010d --- /dev/null +++ b/content/viewer/net/onenote.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OneNote API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения OneNote в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "OneNote средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла OneNote в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла OneNote в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать OneNote в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл OneNote с полным путем. + 3. Установите параметры для преобразования файла OneNote в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл OneNote + string filePath = "input.one"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл OneNote в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "OneNote" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/onenote.th.md b/content/viewer/net/onenote.th.md new file mode 100644 index 00000000..38af9a16 --- /dev/null +++ b/content/viewer/net/onenote.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OneNote Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง OneNote ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ OneNote สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ OneNote ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ OneNote ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล OneNote เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ OneNote ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ OneNote เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต OneNote + string filePath = "input.one"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ OneNote เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "OneNote" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/onenote.uk.md b/content/viewer/net/onenote.uk.md new file mode 100644 index 00000000..2b3523ef --- /dev/null +++ b/content/viewer/net/onenote.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OneNote Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення OneNote у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів OneNote для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу OneNote у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу OneNote у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити OneNote у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл OneNote із повним шляхом. + 3. Встановіть параметри для перетворення файлу OneNote у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл OneNote + string filePath = "input.one"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл OneNote у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "OneNote" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/onenote.vi.md b/content/viewer/net/onenote.vi.md new file mode 100644 index 00000000..06cc8955 --- /dev/null +++ b/content/viewer/net/onenote.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET OneNote - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị OneNote trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp OneNote dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp OneNote trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp OneNote trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị OneNote thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp OneNote với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp OneNote thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp OneNote đầu vào + string filePath = "input.one"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp OneNote thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "OneNote" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/onenote.zh.md b/content/viewer/net/onenote.zh.md new file mode 100644 index 00000000..c2c7d32f --- /dev/null +++ b/content/viewer/net/onenote.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OneNote Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 OneNote。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 OneNote 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 OneNote 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 OneNote 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 OneNote 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 OneNote 文件。 + 3. 设置选项以将 OneNote 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 OneNote 文件 + string filePath = "input.one"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 OneNote 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "OneNote" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ost.de.md b/content/viewer/net/ost.de.md new file mode 100644 index 00000000..e2757813 --- /dev/null +++ b/content/viewer/net/ost.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OST Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von OST in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "OST Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von OST-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der OST-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie OST in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei OST mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei OST im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei OST ein + string filePath = "input.ost"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei OST mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "OST" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ost.en.md b/content/viewer/net/ost.en.md new file mode 100644 index 00000000..bae43a5e --- /dev/null +++ b/content/viewer/net/ost.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OST Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display OST in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "OST file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display OST file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render OST file in C#" + content: | + With GroupDocs.Viewer you can render OST to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the OST file with full path. + 3. Set options to render OST file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input OST file + string filePath = "input.ost"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render OST file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "OST" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ost.es.md b/content/viewer/net/ost.es.md new file mode 100644 index 00000000..b04fc77d --- /dev/null +++ b/content/viewer/net/ost.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OST API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar OST en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "OST visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos OST en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo OST en C#" + content: | + Con GroupDocs.Viewer puede renderizar OST a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo OST con la ruta completa. + 3. Configure opciones para representar el archivo OST en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada OST + string filePath = "input.ost"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo OST a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "OST" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ost.fa.md b/content/viewer/net/ost.fa.md new file mode 100644 index 00000000..433d14ac --- /dev/null +++ b/content/viewer/net/ost.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OST بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش OST در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل OST برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل OST در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل OST در C#" + content: | + با GroupDocs.Viewer می‌توانید OST را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل OST را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل OST در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی OST را تنظیم کنید + string filePath = "input.ost"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل OST را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "OST" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ost.fr.md b/content/viewer/net/ost.fr.md new file mode 100644 index 00000000..41a6e7d7 --- /dev/null +++ b/content/viewer/net/ost.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET OST - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher OST dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "OST visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier OST dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier OST dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer OST au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier OST avec le chemin complet. + 3. Définissez les options pour restituer le fichier OST au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée OST + string filePath = "input.ost"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier OST au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "OST" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ost.id.md b/content/viewer/net/ost.id.md new file mode 100644 index 00000000..c372c6e6 --- /dev/null +++ b/content/viewer/net/ost.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OST Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan OST di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "OST penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file OST dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file OST di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender OST ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file OST dengan path lengkap. + 3. Tetapkan opsi untuk merender file OST ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan OST + string filePath = "input.ost"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file OST ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "OST" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ost.it.md b/content/viewer/net/ost.it.md new file mode 100644 index 00000000..d44c955b --- /dev/null +++ b/content/viewer/net/ost.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET OST: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare OST in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file OST per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file OST in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file OST in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di OST in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file OST con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file OST nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input OST + string filePath = "input.ost"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file OST in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "OST" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ost.ja.md b/content/viewer/net/ost.ja.md new file mode 100644 index 00000000..3cfa47cc --- /dev/null +++ b/content/viewer/net/ost.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OST ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで OST を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の OST ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで OST ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で OST ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で OST を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、OST ファイルをフルパスでロードします。 + 3. OST ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 OST ファイルを設定する + string filePath = "input.ost"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた OST ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "OST" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ost.ko.md b/content/viewer/net/ost.ko.md new file mode 100644 index 00000000..1a0a7b6e --- /dev/null +++ b/content/viewer/net/ost.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OST 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 OST을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 OST 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 OST 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 OST 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 OST을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 OST 파일을 로드합니다. + 3. OST 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 OST 파일 설정 + string filePath = "input.ost"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 OST 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "OST" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ost.pt.md b/content/viewer/net/ost.pt.md new file mode 100644 index 00000000..5a8be1e1 --- /dev/null +++ b/content/viewer/net/ost.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OST API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir OST em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos OST para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos OST em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo OST em C#" + content: | + Com GroupDocs.Viewer você pode renderizar OST para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo OST com caminho completo. + 3. Defina opções para renderizar o arquivo OST em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada OST + string filePath = "input.ost"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo OST em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "OST" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ost.ru.md b/content/viewer/net/ost.ru.md new file mode 100644 index 00000000..596d1324 --- /dev/null +++ b/content/viewer/net/ost.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OST API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения OST в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "OST средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла OST в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла OST в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать OST в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл OST с полным путем. + 3. Установите параметры для преобразования файла OST в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл OST + string filePath = "input.ost"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл OST в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "OST" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ost.th.md b/content/viewer/net/ost.th.md new file mode 100644 index 00000000..11838fd4 --- /dev/null +++ b/content/viewer/net/ost.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OST Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง OST ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ OST สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ OST ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ OST ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล OST เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ OST ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ OST เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต OST + string filePath = "input.ost"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ OST เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "OST" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ost.uk.md b/content/viewer/net/ost.uk.md new file mode 100644 index 00000000..3e673e23 --- /dev/null +++ b/content/viewer/net/ost.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OST Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення OST у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів OST для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу OST у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу OST у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити OST у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл OST із повним шляхом. + 3. Встановіть параметри для перетворення файлу OST у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл OST + string filePath = "input.ost"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл OST у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "OST" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ost.vi.md b/content/viewer/net/ost.vi.md new file mode 100644 index 00000000..c81e5f8f --- /dev/null +++ b/content/viewer/net/ost.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET OST - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị OST trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp OST dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp OST trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp OST trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị OST thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp OST với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp OST thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp OST đầu vào + string filePath = "input.ost"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp OST thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "OST" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ost.zh.md b/content/viewer/net/ost.zh.md new file mode 100644 index 00000000..1dd4c08a --- /dev/null +++ b/content/viewer/net/ost.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OST Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 OST。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 OST 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 OST 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 OST 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 OST 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 OST 文件。 + 3. 设置选项以将 OST 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 OST 文件 + string filePath = "input.ost"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 OST 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "OST" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/otg.de.md b/content/viewer/net/otg.de.md new file mode 100644 index 00000000..fffd7678 --- /dev/null +++ b/content/viewer/net/otg.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTG Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von OTG in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "OTG Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von OTG-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der OTG-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie OTG in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei OTG mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei OTG im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei OTG ein + string filePath = "input.otg"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei OTG mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "OTG" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/otg.en.md b/content/viewer/net/otg.en.md new file mode 100644 index 00000000..16358af7 --- /dev/null +++ b/content/viewer/net/otg.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTG Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display OTG in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "OTG file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display OTG file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render OTG file in C#" + content: | + With GroupDocs.Viewer you can render OTG to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the OTG file with full path. + 3. Set options to render OTG file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input OTG file + string filePath = "input.otg"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render OTG file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "OTG" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/otg.es.md b/content/viewer/net/otg.es.md new file mode 100644 index 00000000..fc89a98e --- /dev/null +++ b/content/viewer/net/otg.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTG API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar OTG en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "OTG visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos OTG en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo OTG en C#" + content: | + Con GroupDocs.Viewer puede renderizar OTG a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo OTG con la ruta completa. + 3. Configure opciones para representar el archivo OTG en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada OTG + string filePath = "input.otg"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo OTG a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "OTG" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/otg.fa.md b/content/viewer/net/otg.fa.md new file mode 100644 index 00000000..f33ad01e --- /dev/null +++ b/content/viewer/net/otg.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTG بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش OTG در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل OTG برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل OTG در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل OTG در C#" + content: | + با GroupDocs.Viewer می‌توانید OTG را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل OTG را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل OTG در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی OTG را تنظیم کنید + string filePath = "input.otg"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل OTG را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "OTG" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/otg.fr.md b/content/viewer/net/otg.fr.md new file mode 100644 index 00000000..e9eaa270 --- /dev/null +++ b/content/viewer/net/otg.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET OTG - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher OTG dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "OTG visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier OTG dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier OTG dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer OTG au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier OTG avec le chemin complet. + 3. Définissez les options pour restituer le fichier OTG au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée OTG + string filePath = "input.otg"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier OTG au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "OTG" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/otg.id.md b/content/viewer/net/otg.id.md new file mode 100644 index 00000000..64c0521c --- /dev/null +++ b/content/viewer/net/otg.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTG Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan OTG di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "OTG penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file OTG dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file OTG di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender OTG ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file OTG dengan path lengkap. + 3. Tetapkan opsi untuk merender file OTG ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan OTG + string filePath = "input.otg"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file OTG ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "OTG" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/otg.it.md b/content/viewer/net/otg.it.md new file mode 100644 index 00000000..44f7310a --- /dev/null +++ b/content/viewer/net/otg.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET OTG: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare OTG in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file OTG per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file OTG in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file OTG in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di OTG in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file OTG con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file OTG nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input OTG + string filePath = "input.otg"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file OTG in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "OTG" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/otg.ja.md b/content/viewer/net/otg.ja.md new file mode 100644 index 00000000..a662e8cf --- /dev/null +++ b/content/viewer/net/otg.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTG ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで OTG を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の OTG ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで OTG ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で OTG ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で OTG を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、OTG ファイルをフルパスでロードします。 + 3. OTG ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 OTG ファイルを設定する + string filePath = "input.otg"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた OTG ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "OTG" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/otg.ko.md b/content/viewer/net/otg.ko.md new file mode 100644 index 00000000..597316e4 --- /dev/null +++ b/content/viewer/net/otg.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTG 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 OTG을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 OTG 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 OTG 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 OTG 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 OTG을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 OTG 파일을 로드합니다. + 3. OTG 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 OTG 파일 설정 + string filePath = "input.otg"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 OTG 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "OTG" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/otg.pt.md b/content/viewer/net/otg.pt.md new file mode 100644 index 00000000..25662bd2 --- /dev/null +++ b/content/viewer/net/otg.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTG API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir OTG em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos OTG para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos OTG em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo OTG em C#" + content: | + Com GroupDocs.Viewer você pode renderizar OTG para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo OTG com caminho completo. + 3. Defina opções para renderizar o arquivo OTG em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada OTG + string filePath = "input.otg"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo OTG em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "OTG" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/otg.ru.md b/content/viewer/net/otg.ru.md new file mode 100644 index 00000000..6efef0b6 --- /dev/null +++ b/content/viewer/net/otg.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTG API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения OTG в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "OTG средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла OTG в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла OTG в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать OTG в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл OTG с полным путем. + 3. Установите параметры для преобразования файла OTG в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл OTG + string filePath = "input.otg"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл OTG в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "OTG" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/otg.th.md b/content/viewer/net/otg.th.md new file mode 100644 index 00000000..410be5d8 --- /dev/null +++ b/content/viewer/net/otg.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTG Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง OTG ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ OTG สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ OTG ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ OTG ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล OTG เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ OTG ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ OTG เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต OTG + string filePath = "input.otg"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ OTG เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "OTG" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/otg.uk.md b/content/viewer/net/otg.uk.md new file mode 100644 index 00000000..f85e64a9 --- /dev/null +++ b/content/viewer/net/otg.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTG Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення OTG у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів OTG для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу OTG у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу OTG у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити OTG у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл OTG із повним шляхом. + 3. Встановіть параметри для перетворення файлу OTG у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл OTG + string filePath = "input.otg"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл OTG у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "OTG" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/otg.vi.md b/content/viewer/net/otg.vi.md new file mode 100644 index 00000000..09ccf219 --- /dev/null +++ b/content/viewer/net/otg.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET OTG - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị OTG trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp OTG dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp OTG trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp OTG trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị OTG thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp OTG với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp OTG thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp OTG đầu vào + string filePath = "input.otg"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp OTG thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "OTG" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/otg.zh.md b/content/viewer/net/otg.zh.md new file mode 100644 index 00000000..2808e0bb --- /dev/null +++ b/content/viewer/net/otg.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTG Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 OTG。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 OTG 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 OTG 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 OTG 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 OTG 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 OTG 文件。 + 3. 设置选项以将 OTG 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 OTG 文件 + string filePath = "input.otg"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 OTG 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "OTG" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/otp.de.md b/content/viewer/net/otp.de.md new file mode 100644 index 00000000..d7f0a184 --- /dev/null +++ b/content/viewer/net/otp.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTP Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von OTP in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "OTP Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von OTP-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der OTP-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie OTP in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei OTP mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei OTP im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei OTP ein + string filePath = "input.otp"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei OTP mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "OTP" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/otp.en.md b/content/viewer/net/otp.en.md new file mode 100644 index 00000000..0e16d051 --- /dev/null +++ b/content/viewer/net/otp.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTP Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display OTP in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "OTP file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display OTP file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render OTP file in C#" + content: | + With GroupDocs.Viewer you can render OTP to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the OTP file with full path. + 3. Set options to render OTP file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input OTP file + string filePath = "input.otp"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render OTP file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "OTP" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/otp.es.md b/content/viewer/net/otp.es.md new file mode 100644 index 00000000..dedf5a4b --- /dev/null +++ b/content/viewer/net/otp.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTP API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar OTP en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "OTP visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos OTP en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo OTP en C#" + content: | + Con GroupDocs.Viewer puede renderizar OTP a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo OTP con la ruta completa. + 3. Configure opciones para representar el archivo OTP en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada OTP + string filePath = "input.otp"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo OTP a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "OTP" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/otp.fa.md b/content/viewer/net/otp.fa.md new file mode 100644 index 00000000..aa9a8603 --- /dev/null +++ b/content/viewer/net/otp.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTP بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش OTP در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل OTP برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل OTP در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل OTP در C#" + content: | + با GroupDocs.Viewer می‌توانید OTP را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل OTP را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل OTP در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی OTP را تنظیم کنید + string filePath = "input.otp"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل OTP را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "OTP" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/otp.fr.md b/content/viewer/net/otp.fr.md new file mode 100644 index 00000000..9ad6317c --- /dev/null +++ b/content/viewer/net/otp.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET OTP - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher OTP dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "OTP visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier OTP dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier OTP dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer OTP au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier OTP avec le chemin complet. + 3. Définissez les options pour restituer le fichier OTP au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée OTP + string filePath = "input.otp"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier OTP au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "OTP" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/otp.id.md b/content/viewer/net/otp.id.md new file mode 100644 index 00000000..507bb3f7 --- /dev/null +++ b/content/viewer/net/otp.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTP Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan OTP di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "OTP penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file OTP dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file OTP di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender OTP ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file OTP dengan path lengkap. + 3. Tetapkan opsi untuk merender file OTP ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan OTP + string filePath = "input.otp"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file OTP ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "OTP" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/otp.it.md b/content/viewer/net/otp.it.md new file mode 100644 index 00000000..ab20f342 --- /dev/null +++ b/content/viewer/net/otp.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET OTP: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare OTP in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file OTP per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file OTP in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file OTP in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di OTP in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file OTP con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file OTP nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input OTP + string filePath = "input.otp"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file OTP in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "OTP" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/otp.ja.md b/content/viewer/net/otp.ja.md new file mode 100644 index 00000000..f2c76175 --- /dev/null +++ b/content/viewer/net/otp.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTP ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで OTP を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の OTP ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで OTP ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で OTP ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で OTP を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、OTP ファイルをフルパスでロードします。 + 3. OTP ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 OTP ファイルを設定する + string filePath = "input.otp"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた OTP ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "OTP" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/otp.ko.md b/content/viewer/net/otp.ko.md new file mode 100644 index 00000000..2578060b --- /dev/null +++ b/content/viewer/net/otp.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTP 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 OTP을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 OTP 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 OTP 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 OTP 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 OTP을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 OTP 파일을 로드합니다. + 3. OTP 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 OTP 파일 설정 + string filePath = "input.otp"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 OTP 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "OTP" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/otp.pt.md b/content/viewer/net/otp.pt.md new file mode 100644 index 00000000..812c68a0 --- /dev/null +++ b/content/viewer/net/otp.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTP API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir OTP em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos OTP para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos OTP em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo OTP em C#" + content: | + Com GroupDocs.Viewer você pode renderizar OTP para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo OTP com caminho completo. + 3. Defina opções para renderizar o arquivo OTP em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada OTP + string filePath = "input.otp"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo OTP em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "OTP" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/otp.ru.md b/content/viewer/net/otp.ru.md new file mode 100644 index 00000000..26c40069 --- /dev/null +++ b/content/viewer/net/otp.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTP API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения OTP в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "OTP средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла OTP в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла OTP в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать OTP в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл OTP с полным путем. + 3. Установите параметры для преобразования файла OTP в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл OTP + string filePath = "input.otp"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл OTP в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "OTP" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/otp.th.md b/content/viewer/net/otp.th.md new file mode 100644 index 00000000..71739c4f --- /dev/null +++ b/content/viewer/net/otp.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTP Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง OTP ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ OTP สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ OTP ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ OTP ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล OTP เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ OTP ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ OTP เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต OTP + string filePath = "input.otp"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ OTP เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "OTP" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/otp.uk.md b/content/viewer/net/otp.uk.md new file mode 100644 index 00000000..1af0d966 --- /dev/null +++ b/content/viewer/net/otp.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTP Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення OTP у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів OTP для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу OTP у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу OTP у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити OTP у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл OTP із повним шляхом. + 3. Встановіть параметри для перетворення файлу OTP у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл OTP + string filePath = "input.otp"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл OTP у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "OTP" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/otp.vi.md b/content/viewer/net/otp.vi.md new file mode 100644 index 00000000..34e30ff6 --- /dev/null +++ b/content/viewer/net/otp.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET OTP - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị OTP trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp OTP dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp OTP trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp OTP trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị OTP thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp OTP với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp OTP thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp OTP đầu vào + string filePath = "input.otp"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp OTP thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "OTP" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/otp.zh.md b/content/viewer/net/otp.zh.md new file mode 100644 index 00000000..cdad7769 --- /dev/null +++ b/content/viewer/net/otp.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTP Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 OTP。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 OTP 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 OTP 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 OTP 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 OTP 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 OTP 文件。 + 3. 设置选项以将 OTP 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 OTP 文件 + string filePath = "input.otp"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 OTP 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "OTP" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ots.de.md b/content/viewer/net/ots.de.md new file mode 100644 index 00000000..c5ea4239 --- /dev/null +++ b/content/viewer/net/ots.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTS Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von OTS in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "OTS Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von OTS-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der OTS-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie OTS in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei OTS mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei OTS im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei OTS ein + string filePath = "input.ots"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei OTS mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "OTS" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ots.en.md b/content/viewer/net/ots.en.md new file mode 100644 index 00000000..d3db0ffa --- /dev/null +++ b/content/viewer/net/ots.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTS Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display OTS in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "OTS file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display OTS file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render OTS file in C#" + content: | + With GroupDocs.Viewer you can render OTS to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the OTS file with full path. + 3. Set options to render OTS file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input OTS file + string filePath = "input.ots"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render OTS file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "OTS" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ots.es.md b/content/viewer/net/ots.es.md new file mode 100644 index 00000000..0b891009 --- /dev/null +++ b/content/viewer/net/ots.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTS API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar OTS en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "OTS visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos OTS en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo OTS en C#" + content: | + Con GroupDocs.Viewer puede renderizar OTS a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo OTS con la ruta completa. + 3. Configure opciones para representar el archivo OTS en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada OTS + string filePath = "input.ots"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo OTS a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "OTS" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ots.fa.md b/content/viewer/net/ots.fa.md new file mode 100644 index 00000000..2f573c07 --- /dev/null +++ b/content/viewer/net/ots.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTS بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش OTS در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل OTS برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل OTS در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل OTS در C#" + content: | + با GroupDocs.Viewer می‌توانید OTS را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل OTS را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل OTS در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی OTS را تنظیم کنید + string filePath = "input.ots"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل OTS را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "OTS" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ots.fr.md b/content/viewer/net/ots.fr.md new file mode 100644 index 00000000..a864eb0d --- /dev/null +++ b/content/viewer/net/ots.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET OTS - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher OTS dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "OTS visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier OTS dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier OTS dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer OTS au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier OTS avec le chemin complet. + 3. Définissez les options pour restituer le fichier OTS au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée OTS + string filePath = "input.ots"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier OTS au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "OTS" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ots.id.md b/content/viewer/net/ots.id.md new file mode 100644 index 00000000..2590e257 --- /dev/null +++ b/content/viewer/net/ots.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTS Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan OTS di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "OTS penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file OTS dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file OTS di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender OTS ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file OTS dengan path lengkap. + 3. Tetapkan opsi untuk merender file OTS ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan OTS + string filePath = "input.ots"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file OTS ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "OTS" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ots.it.md b/content/viewer/net/ots.it.md new file mode 100644 index 00000000..6c27405f --- /dev/null +++ b/content/viewer/net/ots.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET OTS: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare OTS in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file OTS per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file OTS in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file OTS in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di OTS in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file OTS con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file OTS nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input OTS + string filePath = "input.ots"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file OTS in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "OTS" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ots.ja.md b/content/viewer/net/ots.ja.md new file mode 100644 index 00000000..729d28da --- /dev/null +++ b/content/viewer/net/ots.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTS ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで OTS を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の OTS ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで OTS ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で OTS ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で OTS を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、OTS ファイルをフルパスでロードします。 + 3. OTS ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 OTS ファイルを設定する + string filePath = "input.ots"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた OTS ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "OTS" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ots.ko.md b/content/viewer/net/ots.ko.md new file mode 100644 index 00000000..484c61a4 --- /dev/null +++ b/content/viewer/net/ots.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTS 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 OTS을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 OTS 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 OTS 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 OTS 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 OTS을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 OTS 파일을 로드합니다. + 3. OTS 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 OTS 파일 설정 + string filePath = "input.ots"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 OTS 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "OTS" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ots.pt.md b/content/viewer/net/ots.pt.md new file mode 100644 index 00000000..bfb829e6 --- /dev/null +++ b/content/viewer/net/ots.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTS API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir OTS em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos OTS para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos OTS em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo OTS em C#" + content: | + Com GroupDocs.Viewer você pode renderizar OTS para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo OTS com caminho completo. + 3. Defina opções para renderizar o arquivo OTS em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada OTS + string filePath = "input.ots"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo OTS em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "OTS" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ots.ru.md b/content/viewer/net/ots.ru.md new file mode 100644 index 00000000..910f3098 --- /dev/null +++ b/content/viewer/net/ots.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTS API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения OTS в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "OTS средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла OTS в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла OTS в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать OTS в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл OTS с полным путем. + 3. Установите параметры для преобразования файла OTS в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл OTS + string filePath = "input.ots"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл OTS в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "OTS" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ots.th.md b/content/viewer/net/ots.th.md new file mode 100644 index 00000000..cf18c68e --- /dev/null +++ b/content/viewer/net/ots.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTS Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง OTS ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ OTS สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ OTS ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ OTS ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล OTS เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ OTS ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ OTS เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต OTS + string filePath = "input.ots"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ OTS เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "OTS" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ots.uk.md b/content/viewer/net/ots.uk.md new file mode 100644 index 00000000..0c33a7be --- /dev/null +++ b/content/viewer/net/ots.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTS Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення OTS у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів OTS для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу OTS у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу OTS у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити OTS у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл OTS із повним шляхом. + 3. Встановіть параметри для перетворення файлу OTS у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл OTS + string filePath = "input.ots"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл OTS у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "OTS" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ots.vi.md b/content/viewer/net/ots.vi.md new file mode 100644 index 00000000..aa9238c9 --- /dev/null +++ b/content/viewer/net/ots.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET OTS - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị OTS trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp OTS dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp OTS trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp OTS trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị OTS thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp OTS với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp OTS thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp OTS đầu vào + string filePath = "input.ots"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp OTS thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "OTS" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ots.zh.md b/content/viewer/net/ots.zh.md new file mode 100644 index 00000000..0ea869e9 --- /dev/null +++ b/content/viewer/net/ots.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTS Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 OTS。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 OTS 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 OTS 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 OTS 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 OTS 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 OTS 文件。 + 3. 设置选项以将 OTS 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 OTS 文件 + string filePath = "input.ots"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 OTS 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "OTS" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ott.de.md b/content/viewer/net/ott.de.md new file mode 100644 index 00000000..71ed7889 --- /dev/null +++ b/content/viewer/net/ott.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTT Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von OTT in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "OTT Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von OTT-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der OTT-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie OTT in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei OTT mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei OTT im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei OTT ein + string filePath = "input.ott"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei OTT mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "OTT" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ott.en.md b/content/viewer/net/ott.en.md new file mode 100644 index 00000000..2f175556 --- /dev/null +++ b/content/viewer/net/ott.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTT Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display OTT in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "OTT file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display OTT file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render OTT file in C#" + content: | + With GroupDocs.Viewer you can render OTT to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the OTT file with full path. + 3. Set options to render OTT file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input OTT file + string filePath = "input.ott"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render OTT file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "OTT" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ott.es.md b/content/viewer/net/ott.es.md new file mode 100644 index 00000000..8c1d2d47 --- /dev/null +++ b/content/viewer/net/ott.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTT API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar OTT en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "OTT visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos OTT en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo OTT en C#" + content: | + Con GroupDocs.Viewer puede renderizar OTT a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo OTT con la ruta completa. + 3. Configure opciones para representar el archivo OTT en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada OTT + string filePath = "input.ott"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo OTT a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "OTT" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ott.fa.md b/content/viewer/net/ott.fa.md new file mode 100644 index 00000000..29277f8c --- /dev/null +++ b/content/viewer/net/ott.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTT بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش OTT در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل OTT برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل OTT در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل OTT در C#" + content: | + با GroupDocs.Viewer می‌توانید OTT را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل OTT را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل OTT در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی OTT را تنظیم کنید + string filePath = "input.ott"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل OTT را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "OTT" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ott.fr.md b/content/viewer/net/ott.fr.md new file mode 100644 index 00000000..05c3c2d8 --- /dev/null +++ b/content/viewer/net/ott.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET OTT - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher OTT dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "OTT visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier OTT dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier OTT dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer OTT au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier OTT avec le chemin complet. + 3. Définissez les options pour restituer le fichier OTT au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée OTT + string filePath = "input.ott"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier OTT au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "OTT" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ott.id.md b/content/viewer/net/ott.id.md new file mode 100644 index 00000000..9002d9eb --- /dev/null +++ b/content/viewer/net/ott.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTT Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan OTT di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "OTT penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file OTT dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file OTT di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender OTT ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file OTT dengan path lengkap. + 3. Tetapkan opsi untuk merender file OTT ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan OTT + string filePath = "input.ott"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file OTT ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "OTT" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ott.it.md b/content/viewer/net/ott.it.md new file mode 100644 index 00000000..54f1940d --- /dev/null +++ b/content/viewer/net/ott.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET OTT: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare OTT in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file OTT per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file OTT in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file OTT in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di OTT in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file OTT con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file OTT nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input OTT + string filePath = "input.ott"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file OTT in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "OTT" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ott.ja.md b/content/viewer/net/ott.ja.md new file mode 100644 index 00000000..10be5f09 --- /dev/null +++ b/content/viewer/net/ott.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTT ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで OTT を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の OTT ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで OTT ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で OTT ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で OTT を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、OTT ファイルをフルパスでロードします。 + 3. OTT ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 OTT ファイルを設定する + string filePath = "input.ott"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた OTT ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "OTT" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ott.ko.md b/content/viewer/net/ott.ko.md new file mode 100644 index 00000000..60cabae5 --- /dev/null +++ b/content/viewer/net/ott.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTT 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 OTT을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 OTT 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 OTT 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 OTT 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 OTT을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 OTT 파일을 로드합니다. + 3. OTT 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 OTT 파일 설정 + string filePath = "input.ott"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 OTT 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "OTT" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ott.pt.md b/content/viewer/net/ott.pt.md new file mode 100644 index 00000000..7584e17b --- /dev/null +++ b/content/viewer/net/ott.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTT API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir OTT em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos OTT para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos OTT em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo OTT em C#" + content: | + Com GroupDocs.Viewer você pode renderizar OTT para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo OTT com caminho completo. + 3. Defina opções para renderizar o arquivo OTT em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada OTT + string filePath = "input.ott"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo OTT em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "OTT" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ott.ru.md b/content/viewer/net/ott.ru.md new file mode 100644 index 00000000..eba4649a --- /dev/null +++ b/content/viewer/net/ott.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTT API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения OTT в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "OTT средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла OTT в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла OTT в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать OTT в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл OTT с полным путем. + 3. Установите параметры для преобразования файла OTT в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл OTT + string filePath = "input.ott"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл OTT в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "OTT" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ott.th.md b/content/viewer/net/ott.th.md new file mode 100644 index 00000000..4689c1b8 --- /dev/null +++ b/content/viewer/net/ott.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTT Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง OTT ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ OTT สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ OTT ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ OTT ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล OTT เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ OTT ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ OTT เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต OTT + string filePath = "input.ott"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ OTT เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "OTT" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ott.uk.md b/content/viewer/net/ott.uk.md new file mode 100644 index 00000000..0d97256c --- /dev/null +++ b/content/viewer/net/ott.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTT Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення OTT у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів OTT для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу OTT у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу OTT у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити OTT у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл OTT із повним шляхом. + 3. Встановіть параметри для перетворення файлу OTT у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл OTT + string filePath = "input.ott"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл OTT у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "OTT" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ott.vi.md b/content/viewer/net/ott.vi.md new file mode 100644 index 00000000..522b71a1 --- /dev/null +++ b/content/viewer/net/ott.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET OTT - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị OTT trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp OTT dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp OTT trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp OTT trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị OTT thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp OTT với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp OTT thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp OTT đầu vào + string filePath = "input.ott"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp OTT thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "OTT" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ott.zh.md b/content/viewer/net/ott.zh.md new file mode 100644 index 00000000..17081e53 --- /dev/null +++ b/content/viewer/net/ott.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OTT Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 OTT。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 OTT 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 OTT 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 OTT 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 OTT 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 OTT 文件。 + 3. 设置选项以将 OTT 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 OTT 文件 + string filePath = "input.ott"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 OTT 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "OTT" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/outlook.de.md b/content/viewer/net/outlook.de.md new file mode 100644 index 00000000..6b667016 --- /dev/null +++ b/content/viewer/net/outlook.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Outlook Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von Outlook in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "Outlook Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von Outlook-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der Outlook-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie Outlook in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei Outlook mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei Outlook im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei Outlook ein + string filePath = "input.pst"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei Outlook mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "Outlook" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/outlook.en.md b/content/viewer/net/outlook.en.md new file mode 100644 index 00000000..474c45b5 --- /dev/null +++ b/content/viewer/net/outlook.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Outlook Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display Outlook in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "Outlook file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display Outlook file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render Outlook file in C#" + content: | + With GroupDocs.Viewer you can render Outlook to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the Outlook file with full path. + 3. Set options to render Outlook file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input Outlook file + string filePath = "input.pst"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render Outlook file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "Outlook" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/outlook.es.md b/content/viewer/net/outlook.es.md new file mode 100644 index 00000000..379e5337 --- /dev/null +++ b/content/viewer/net/outlook.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Outlook API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar Outlook en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "Outlook visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos Outlook en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo Outlook en C#" + content: | + Con GroupDocs.Viewer puede renderizar Outlook a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo Outlook con la ruta completa. + 3. Configure opciones para representar el archivo Outlook en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada Outlook + string filePath = "input.pst"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo Outlook a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "Outlook" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/outlook.fa.md b/content/viewer/net/outlook.fa.md new file mode 100644 index 00000000..59265a9d --- /dev/null +++ b/content/viewer/net/outlook.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Outlook بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش Outlook در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل Outlook برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل Outlook در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل Outlook در C#" + content: | + با GroupDocs.Viewer می‌توانید Outlook را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل Outlook را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل Outlook در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی Outlook را تنظیم کنید + string filePath = "input.pst"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل Outlook را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "Outlook" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/outlook.fr.md b/content/viewer/net/outlook.fr.md new file mode 100644 index 00000000..17354611 --- /dev/null +++ b/content/viewer/net/outlook.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET Outlook - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher Outlook dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "Outlook visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier Outlook dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier Outlook dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer Outlook au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier Outlook avec le chemin complet. + 3. Définissez les options pour restituer le fichier Outlook au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée Outlook + string filePath = "input.pst"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier Outlook au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "Outlook" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/outlook.id.md b/content/viewer/net/outlook.id.md new file mode 100644 index 00000000..1acfd0c7 --- /dev/null +++ b/content/viewer/net/outlook.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Outlook Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan Outlook di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Outlook penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file Outlook dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file Outlook di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender Outlook ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file Outlook dengan path lengkap. + 3. Tetapkan opsi untuk merender file Outlook ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan Outlook + string filePath = "input.pst"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file Outlook ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "Outlook" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/outlook.it.md b/content/viewer/net/outlook.it.md new file mode 100644 index 00000000..66f51b28 --- /dev/null +++ b/content/viewer/net/outlook.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET Outlook: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare Outlook in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file Outlook per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file Outlook in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file Outlook in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di Outlook in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file Outlook con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file Outlook nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input Outlook + string filePath = "input.pst"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file Outlook in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "Outlook" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/outlook.ja.md b/content/viewer/net/outlook.ja.md new file mode 100644 index 00000000..c472cc88 --- /dev/null +++ b/content/viewer/net/outlook.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Outlook ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで Outlook を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の Outlook ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで Outlook ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で Outlook ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で Outlook を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、Outlook ファイルをフルパスでロードします。 + 3. Outlook ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 Outlook ファイルを設定する + string filePath = "input.pst"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた Outlook ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "Outlook" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/outlook.ko.md b/content/viewer/net/outlook.ko.md new file mode 100644 index 00000000..59494e1b --- /dev/null +++ b/content/viewer/net/outlook.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Outlook 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 Outlook을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 Outlook 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 Outlook 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 Outlook 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 Outlook을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 Outlook 파일을 로드합니다. + 3. Outlook 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 Outlook 파일 설정 + string filePath = "input.pst"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 Outlook 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "Outlook" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/outlook.pt.md b/content/viewer/net/outlook.pt.md new file mode 100644 index 00000000..ee9af7fd --- /dev/null +++ b/content/viewer/net/outlook.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Outlook API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir Outlook em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos Outlook para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos Outlook em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo Outlook em C#" + content: | + Com GroupDocs.Viewer você pode renderizar Outlook para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo Outlook com caminho completo. + 3. Defina opções para renderizar o arquivo Outlook em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada Outlook + string filePath = "input.pst"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo Outlook em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "Outlook" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/outlook.ru.md b/content/viewer/net/outlook.ru.md new file mode 100644 index 00000000..fe4ba913 --- /dev/null +++ b/content/viewer/net/outlook.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Outlook API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения Outlook в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "Outlook средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла Outlook в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла Outlook в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать Outlook в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл Outlook с полным путем. + 3. Установите параметры для преобразования файла Outlook в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл Outlook + string filePath = "input.pst"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл Outlook в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "Outlook" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/outlook.th.md b/content/viewer/net/outlook.th.md new file mode 100644 index 00000000..40a6f788 --- /dev/null +++ b/content/viewer/net/outlook.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Outlook Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง Outlook ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ Outlook สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ Outlook ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ Outlook ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล Outlook เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ Outlook ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ Outlook เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต Outlook + string filePath = "input.pst"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ Outlook เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "Outlook" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/outlook.uk.md b/content/viewer/net/outlook.uk.md new file mode 100644 index 00000000..b1d6a25f --- /dev/null +++ b/content/viewer/net/outlook.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Outlook Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення Outlook у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів Outlook для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу Outlook у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу Outlook у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити Outlook у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл Outlook із повним шляхом. + 3. Встановіть параметри для перетворення файлу Outlook у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл Outlook + string filePath = "input.pst"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл Outlook у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "Outlook" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/outlook.vi.md b/content/viewer/net/outlook.vi.md new file mode 100644 index 00000000..18a95bee --- /dev/null +++ b/content/viewer/net/outlook.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET Outlook - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị Outlook trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp Outlook dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp Outlook trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp Outlook trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị Outlook thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp Outlook với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp Outlook thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp Outlook đầu vào + string filePath = "input.pst"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp Outlook thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "Outlook" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/outlook.zh.md b/content/viewer/net/outlook.zh.md new file mode 100644 index 00000000..7a310735 --- /dev/null +++ b/content/viewer/net/outlook.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Outlook Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 Outlook。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 Outlook 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 Outlook 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 Outlook 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 Outlook 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 Outlook 文件。 + 3. 设置选项以将 Outlook 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 Outlook 文件 + string filePath = "input.pst"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 Outlook 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "Outlook" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/oxps.de.md b/content/viewer/net/oxps.de.md new file mode 100644 index 00000000..ed7ed666 --- /dev/null +++ b/content/viewer/net/oxps.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OXPS Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von OXPS in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "OXPS Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von OXPS-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der OXPS-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie OXPS in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei OXPS mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei OXPS im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei OXPS ein + string filePath = "input.oxps"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei OXPS mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "OXPS" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/oxps.en.md b/content/viewer/net/oxps.en.md new file mode 100644 index 00000000..49a0ff91 --- /dev/null +++ b/content/viewer/net/oxps.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OXPS Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display OXPS in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "OXPS file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display OXPS file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render OXPS file in C#" + content: | + With GroupDocs.Viewer you can render OXPS to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the OXPS file with full path. + 3. Set options to render OXPS file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input OXPS file + string filePath = "input.oxps"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render OXPS file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "OXPS" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/oxps.es.md b/content/viewer/net/oxps.es.md new file mode 100644 index 00000000..454a2bb4 --- /dev/null +++ b/content/viewer/net/oxps.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OXPS API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar OXPS en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "OXPS visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos OXPS en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo OXPS en C#" + content: | + Con GroupDocs.Viewer puede renderizar OXPS a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo OXPS con la ruta completa. + 3. Configure opciones para representar el archivo OXPS en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada OXPS + string filePath = "input.oxps"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo OXPS a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "OXPS" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/oxps.fa.md b/content/viewer/net/oxps.fa.md new file mode 100644 index 00000000..bb037705 --- /dev/null +++ b/content/viewer/net/oxps.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OXPS بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش OXPS در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل OXPS برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل OXPS در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل OXPS در C#" + content: | + با GroupDocs.Viewer می‌توانید OXPS را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل OXPS را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل OXPS در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی OXPS را تنظیم کنید + string filePath = "input.oxps"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل OXPS را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "OXPS" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/oxps.fr.md b/content/viewer/net/oxps.fr.md new file mode 100644 index 00000000..f3b94a75 --- /dev/null +++ b/content/viewer/net/oxps.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET OXPS - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher OXPS dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "OXPS visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier OXPS dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier OXPS dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer OXPS au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier OXPS avec le chemin complet. + 3. Définissez les options pour restituer le fichier OXPS au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée OXPS + string filePath = "input.oxps"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier OXPS au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "OXPS" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/oxps.id.md b/content/viewer/net/oxps.id.md new file mode 100644 index 00000000..b73e6d8d --- /dev/null +++ b/content/viewer/net/oxps.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OXPS Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan OXPS di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "OXPS penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file OXPS dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file OXPS di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender OXPS ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file OXPS dengan path lengkap. + 3. Tetapkan opsi untuk merender file OXPS ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan OXPS + string filePath = "input.oxps"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file OXPS ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "OXPS" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/oxps.it.md b/content/viewer/net/oxps.it.md new file mode 100644 index 00000000..7c5529c9 --- /dev/null +++ b/content/viewer/net/oxps.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET OXPS: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare OXPS in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file OXPS per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file OXPS in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file OXPS in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di OXPS in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file OXPS con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file OXPS nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input OXPS + string filePath = "input.oxps"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file OXPS in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "OXPS" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/oxps.ja.md b/content/viewer/net/oxps.ja.md new file mode 100644 index 00000000..86872f13 --- /dev/null +++ b/content/viewer/net/oxps.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OXPS ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで OXPS を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の OXPS ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで OXPS ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で OXPS ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で OXPS を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、OXPS ファイルをフルパスでロードします。 + 3. OXPS ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 OXPS ファイルを設定する + string filePath = "input.oxps"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた OXPS ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "OXPS" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/oxps.ko.md b/content/viewer/net/oxps.ko.md new file mode 100644 index 00000000..8f2fdaaf --- /dev/null +++ b/content/viewer/net/oxps.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OXPS 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 OXPS을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 OXPS 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 OXPS 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 OXPS 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 OXPS을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 OXPS 파일을 로드합니다. + 3. OXPS 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 OXPS 파일 설정 + string filePath = "input.oxps"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 OXPS 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "OXPS" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/oxps.pt.md b/content/viewer/net/oxps.pt.md new file mode 100644 index 00000000..d1528231 --- /dev/null +++ b/content/viewer/net/oxps.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OXPS API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir OXPS em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos OXPS para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos OXPS em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo OXPS em C#" + content: | + Com GroupDocs.Viewer você pode renderizar OXPS para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo OXPS com caminho completo. + 3. Defina opções para renderizar o arquivo OXPS em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada OXPS + string filePath = "input.oxps"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo OXPS em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "OXPS" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/oxps.ru.md b/content/viewer/net/oxps.ru.md new file mode 100644 index 00000000..b8f33999 --- /dev/null +++ b/content/viewer/net/oxps.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OXPS API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения OXPS в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "OXPS средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла OXPS в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла OXPS в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать OXPS в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл OXPS с полным путем. + 3. Установите параметры для преобразования файла OXPS в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл OXPS + string filePath = "input.oxps"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл OXPS в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "OXPS" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/oxps.th.md b/content/viewer/net/oxps.th.md new file mode 100644 index 00000000..acfed3b5 --- /dev/null +++ b/content/viewer/net/oxps.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OXPS Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง OXPS ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ OXPS สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ OXPS ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ OXPS ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล OXPS เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ OXPS ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ OXPS เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต OXPS + string filePath = "input.oxps"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ OXPS เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "OXPS" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/oxps.uk.md b/content/viewer/net/oxps.uk.md new file mode 100644 index 00000000..084cd72a --- /dev/null +++ b/content/viewer/net/oxps.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OXPS Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення OXPS у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів OXPS для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу OXPS у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу OXPS у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити OXPS у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл OXPS із повним шляхом. + 3. Встановіть параметри для перетворення файлу OXPS у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл OXPS + string filePath = "input.oxps"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл OXPS у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "OXPS" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/oxps.vi.md b/content/viewer/net/oxps.vi.md new file mode 100644 index 00000000..3de95062 --- /dev/null +++ b/content/viewer/net/oxps.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET OXPS - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị OXPS trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp OXPS dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp OXPS trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp OXPS trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị OXPS thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp OXPS với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp OXPS thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp OXPS đầu vào + string filePath = "input.oxps"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp OXPS thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "OXPS" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/oxps.zh.md b/content/viewer/net/oxps.zh.md new file mode 100644 index 00000000..1b6dece3 --- /dev/null +++ b/content/viewer/net/oxps.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET OXPS Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 OXPS。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 OXPS 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 OXPS 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 OXPS 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 OXPS 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 OXPS 文件。 + 3. 设置选项以将 OXPS 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 OXPS 文件 + string filePath = "input.oxps"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 OXPS 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "OXPS" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pcl.de.md b/content/viewer/net/pcl.de.md new file mode 100644 index 00000000..a2cf0ea2 --- /dev/null +++ b/content/viewer/net/pcl.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PCL Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PCL in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "PCL Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PCL-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der PCL-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie PCL in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei PCL mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei PCL im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei PCL ein + string filePath = "input.pcl"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei PCL mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "PCL" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pcl.en.md b/content/viewer/net/pcl.en.md new file mode 100644 index 00000000..79656ab9 --- /dev/null +++ b/content/viewer/net/pcl.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PCL Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display PCL in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "PCL file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display PCL file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render PCL file in C#" + content: | + With GroupDocs.Viewer you can render PCL to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the PCL file with full path. + 3. Set options to render PCL file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input PCL file + string filePath = "input.pcl"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render PCL file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "PCL" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pcl.es.md b/content/viewer/net/pcl.es.md new file mode 100644 index 00000000..d820f16f --- /dev/null +++ b/content/viewer/net/pcl.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PCL API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar PCL en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "PCL visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos PCL en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo PCL en C#" + content: | + Con GroupDocs.Viewer puede renderizar PCL a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo PCL con la ruta completa. + 3. Configure opciones para representar el archivo PCL en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada PCL + string filePath = "input.pcl"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo PCL a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "PCL" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pcl.fa.md b/content/viewer/net/pcl.fa.md new file mode 100644 index 00000000..246b48de --- /dev/null +++ b/content/viewer/net/pcl.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PCL بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش PCL در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل PCL برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل PCL در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل PCL در C#" + content: | + با GroupDocs.Viewer می‌توانید PCL را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل PCL را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل PCL در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی PCL را تنظیم کنید + string filePath = "input.pcl"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل PCL را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "PCL" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pcl.fr.md b/content/viewer/net/pcl.fr.md new file mode 100644 index 00000000..6e8c9afd --- /dev/null +++ b/content/viewer/net/pcl.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET PCL - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher PCL dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "PCL visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier PCL dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier PCL dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer PCL au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier PCL avec le chemin complet. + 3. Définissez les options pour restituer le fichier PCL au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée PCL + string filePath = "input.pcl"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier PCL au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "PCL" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pcl.id.md b/content/viewer/net/pcl.id.md new file mode 100644 index 00000000..169ef9e8 --- /dev/null +++ b/content/viewer/net/pcl.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PCL Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan PCL di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "PCL penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file PCL dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file PCL di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender PCL ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file PCL dengan path lengkap. + 3. Tetapkan opsi untuk merender file PCL ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan PCL + string filePath = "input.pcl"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file PCL ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "PCL" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pcl.it.md b/content/viewer/net/pcl.it.md new file mode 100644 index 00000000..bab3d2d7 --- /dev/null +++ b/content/viewer/net/pcl.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET PCL: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare PCL in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file PCL per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file PCL in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file PCL in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di PCL in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file PCL con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file PCL nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input PCL + string filePath = "input.pcl"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file PCL in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "PCL" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pcl.ja.md b/content/viewer/net/pcl.ja.md new file mode 100644 index 00000000..5094b077 --- /dev/null +++ b/content/viewer/net/pcl.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PCL ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PCL を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の PCL ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PCL ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で PCL ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で PCL を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、PCL ファイルをフルパスでロードします。 + 3. PCL ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 PCL ファイルを設定する + string filePath = "input.pcl"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた PCL ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "PCL" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pcl.ko.md b/content/viewer/net/pcl.ko.md new file mode 100644 index 00000000..4f23e8a3 --- /dev/null +++ b/content/viewer/net/pcl.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PCL 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PCL을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 PCL 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PCL 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 PCL 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 PCL을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 PCL 파일을 로드합니다. + 3. PCL 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 PCL 파일 설정 + string filePath = "input.pcl"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 PCL 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "PCL" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pcl.pt.md b/content/viewer/net/pcl.pt.md new file mode 100644 index 00000000..7be8116d --- /dev/null +++ b/content/viewer/net/pcl.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PCL API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir PCL em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos PCL para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos PCL em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo PCL em C#" + content: | + Com GroupDocs.Viewer você pode renderizar PCL para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo PCL com caminho completo. + 3. Defina opções para renderizar o arquivo PCL em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada PCL + string filePath = "input.pcl"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo PCL em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "PCL" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pcl.ru.md b/content/viewer/net/pcl.ru.md new file mode 100644 index 00000000..6fec7e60 --- /dev/null +++ b/content/viewer/net/pcl.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PCL API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения PCL в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "PCL средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла PCL в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла PCL в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать PCL в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл PCL с полным путем. + 3. Установите параметры для преобразования файла PCL в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл PCL + string filePath = "input.pcl"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл PCL в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "PCL" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pcl.th.md b/content/viewer/net/pcl.th.md new file mode 100644 index 00000000..8cfb9179 --- /dev/null +++ b/content/viewer/net/pcl.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PCL Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง PCL ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ PCL สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ PCL ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ PCL ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล PCL เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ PCL ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ PCL เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต PCL + string filePath = "input.pcl"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ PCL เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "PCL" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pcl.uk.md b/content/viewer/net/pcl.uk.md new file mode 100644 index 00000000..ec6d8a06 --- /dev/null +++ b/content/viewer/net/pcl.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PCL Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення PCL у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів PCL для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу PCL у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу PCL у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити PCL у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл PCL із повним шляхом. + 3. Встановіть параметри для перетворення файлу PCL у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл PCL + string filePath = "input.pcl"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл PCL у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "PCL" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pcl.vi.md b/content/viewer/net/pcl.vi.md new file mode 100644 index 00000000..fbfe9bb7 --- /dev/null +++ b/content/viewer/net/pcl.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET PCL - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị PCL trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp PCL dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp PCL trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp PCL trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị PCL thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp PCL với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp PCL thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp PCL đầu vào + string filePath = "input.pcl"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp PCL thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "PCL" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pcl.zh.md b/content/viewer/net/pcl.zh.md new file mode 100644 index 00000000..b0bab812 --- /dev/null +++ b/content/viewer/net/pcl.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PCL Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PCL。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 PCL 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PCL 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 PCL 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 PCL 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 PCL 文件。 + 3. 设置选项以将 PCL 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 PCL 文件 + string filePath = "input.pcl"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 PCL 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "PCL" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pdf.de.md b/content/viewer/net/pdf.de.md new file mode 100644 index 00000000..bf1815db --- /dev/null +++ b/content/viewer/net/pdf.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PDF Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PDF in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "PDF Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PDF-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der PDF-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie PDF in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei PDF mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei PDF im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei PDF ein + string filePath = "input.pdf"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei PDF mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "PDF" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pdf.en.md b/content/viewer/net/pdf.en.md new file mode 100644 index 00000000..79688327 --- /dev/null +++ b/content/viewer/net/pdf.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PDF Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display PDF in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "PDF file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display PDF file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render PDF file in C#" + content: | + With GroupDocs.Viewer you can render PDF to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the PDF file with full path. + 3. Set options to render PDF file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input PDF file + string filePath = "input.pdf"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render PDF file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "PDF" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pdf.es.md b/content/viewer/net/pdf.es.md new file mode 100644 index 00000000..1281c47b --- /dev/null +++ b/content/viewer/net/pdf.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PDF API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar PDF en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "PDF visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos PDF en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo PDF en C#" + content: | + Con GroupDocs.Viewer puede renderizar PDF a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo PDF con la ruta completa. + 3. Configure opciones para representar el archivo PDF en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada PDF + string filePath = "input.pdf"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo PDF a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "PDF" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pdf.fa.md b/content/viewer/net/pdf.fa.md new file mode 100644 index 00000000..fc7c8405 --- /dev/null +++ b/content/viewer/net/pdf.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PDF بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش PDF در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل PDF برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل PDF در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل PDF در C#" + content: | + با GroupDocs.Viewer می‌توانید PDF را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل PDF را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل PDF در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی PDF را تنظیم کنید + string filePath = "input.pdf"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل PDF را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "PDF" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pdf.fr.md b/content/viewer/net/pdf.fr.md new file mode 100644 index 00000000..63efef51 --- /dev/null +++ b/content/viewer/net/pdf.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET PDF - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher PDF dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "PDF visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier PDF dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier PDF dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer PDF au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier PDF avec le chemin complet. + 3. Définissez les options pour restituer le fichier PDF au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée PDF + string filePath = "input.pdf"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier PDF au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "PDF" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pdf.id.md b/content/viewer/net/pdf.id.md new file mode 100644 index 00000000..e858706e --- /dev/null +++ b/content/viewer/net/pdf.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PDF Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan PDF di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "PDF penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file PDF dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file PDF di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender PDF ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file PDF dengan path lengkap. + 3. Tetapkan opsi untuk merender file PDF ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan PDF + string filePath = "input.pdf"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file PDF ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "PDF" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pdf.it.md b/content/viewer/net/pdf.it.md new file mode 100644 index 00000000..cc30bfe8 --- /dev/null +++ b/content/viewer/net/pdf.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET PDF: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare PDF in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file PDF per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file PDF in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file PDF in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di PDF in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file PDF con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file PDF nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input PDF + string filePath = "input.pdf"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file PDF in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "PDF" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pdf.ja.md b/content/viewer/net/pdf.ja.md new file mode 100644 index 00000000..253d464a --- /dev/null +++ b/content/viewer/net/pdf.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PDF ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PDF を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の PDF ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PDF ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で PDF ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で PDF を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、PDF ファイルをフルパスでロードします。 + 3. PDF ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 PDF ファイルを設定する + string filePath = "input.pdf"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた PDF ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "PDF" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pdf.ko.md b/content/viewer/net/pdf.ko.md new file mode 100644 index 00000000..db7f91f4 --- /dev/null +++ b/content/viewer/net/pdf.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PDF 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PDF을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 PDF 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PDF 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 PDF 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 PDF을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 PDF 파일을 로드합니다. + 3. PDF 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 PDF 파일 설정 + string filePath = "input.pdf"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 PDF 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "PDF" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pdf.pt.md b/content/viewer/net/pdf.pt.md new file mode 100644 index 00000000..3d43ce59 --- /dev/null +++ b/content/viewer/net/pdf.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PDF API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir PDF em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos PDF para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos PDF em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo PDF em C#" + content: | + Com GroupDocs.Viewer você pode renderizar PDF para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo PDF com caminho completo. + 3. Defina opções para renderizar o arquivo PDF em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada PDF + string filePath = "input.pdf"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo PDF em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "PDF" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pdf.ru.md b/content/viewer/net/pdf.ru.md new file mode 100644 index 00000000..767c99b4 --- /dev/null +++ b/content/viewer/net/pdf.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PDF API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения PDF в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "PDF средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла PDF в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла PDF в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать PDF в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл PDF с полным путем. + 3. Установите параметры для преобразования файла PDF в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл PDF + string filePath = "input.pdf"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл PDF в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "PDF" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pdf.th.md b/content/viewer/net/pdf.th.md new file mode 100644 index 00000000..4fd3e355 --- /dev/null +++ b/content/viewer/net/pdf.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PDF Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง PDF ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ PDF สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ PDF ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ PDF ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล PDF เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ PDF ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ PDF เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต PDF + string filePath = "input.pdf"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ PDF เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "PDF" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pdf.uk.md b/content/viewer/net/pdf.uk.md new file mode 100644 index 00000000..c9e03044 --- /dev/null +++ b/content/viewer/net/pdf.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PDF Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення PDF у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів PDF для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу PDF у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу PDF у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити PDF у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл PDF із повним шляхом. + 3. Встановіть параметри для перетворення файлу PDF у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл PDF + string filePath = "input.pdf"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл PDF у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "PDF" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pdf.vi.md b/content/viewer/net/pdf.vi.md new file mode 100644 index 00000000..899a097f --- /dev/null +++ b/content/viewer/net/pdf.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET PDF - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị PDF trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp PDF dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp PDF trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp PDF trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị PDF thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp PDF với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp PDF thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp PDF đầu vào + string filePath = "input.pdf"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp PDF thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "PDF" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pdf.zh.md b/content/viewer/net/pdf.zh.md new file mode 100644 index 00000000..424ed425 --- /dev/null +++ b/content/viewer/net/pdf.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PDF Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PDF。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 PDF 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PDF 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 PDF 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 PDF 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 PDF 文件。 + 3. 设置选项以将 PDF 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 PDF 文件 + string filePath = "input.pdf"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 PDF 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "PDF" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/photoshop.de.md b/content/viewer/net/photoshop.de.md new file mode 100644 index 00000000..2b483d7b --- /dev/null +++ b/content/viewer/net/photoshop.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Photoshop Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von Photoshop in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "Photoshop Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von Photoshop-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der Photoshop-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie Photoshop in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei Photoshop mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei Photoshop im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei Photoshop ein + string filePath = "input.psd"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei Photoshop mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "Photoshop" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/photoshop.en.md b/content/viewer/net/photoshop.en.md new file mode 100644 index 00000000..8880c911 --- /dev/null +++ b/content/viewer/net/photoshop.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Photoshop Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display Photoshop in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "Photoshop file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display Photoshop file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render Photoshop file in C#" + content: | + With GroupDocs.Viewer you can render Photoshop to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the Photoshop file with full path. + 3. Set options to render Photoshop file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input Photoshop file + string filePath = "input.psd"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render Photoshop file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "Photoshop" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/photoshop.es.md b/content/viewer/net/photoshop.es.md new file mode 100644 index 00000000..3ab9151c --- /dev/null +++ b/content/viewer/net/photoshop.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Photoshop API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar Photoshop en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "Photoshop visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos Photoshop en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo Photoshop en C#" + content: | + Con GroupDocs.Viewer puede renderizar Photoshop a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo Photoshop con la ruta completa. + 3. Configure opciones para representar el archivo Photoshop en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada Photoshop + string filePath = "input.psd"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo Photoshop a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "Photoshop" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/photoshop.fa.md b/content/viewer/net/photoshop.fa.md new file mode 100644 index 00000000..419716d5 --- /dev/null +++ b/content/viewer/net/photoshop.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Photoshop بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش Photoshop در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل Photoshop برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل Photoshop در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل Photoshop در C#" + content: | + با GroupDocs.Viewer می‌توانید Photoshop را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل Photoshop را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل Photoshop در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی Photoshop را تنظیم کنید + string filePath = "input.psd"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل Photoshop را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "Photoshop" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/photoshop.fr.md b/content/viewer/net/photoshop.fr.md new file mode 100644 index 00000000..f982b918 --- /dev/null +++ b/content/viewer/net/photoshop.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET Photoshop - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher Photoshop dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "Photoshop visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier Photoshop dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier Photoshop dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer Photoshop au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier Photoshop avec le chemin complet. + 3. Définissez les options pour restituer le fichier Photoshop au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée Photoshop + string filePath = "input.psd"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier Photoshop au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "Photoshop" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/photoshop.id.md b/content/viewer/net/photoshop.id.md new file mode 100644 index 00000000..ecf1744a --- /dev/null +++ b/content/viewer/net/photoshop.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Photoshop Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan Photoshop di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Photoshop penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file Photoshop dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file Photoshop di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender Photoshop ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file Photoshop dengan path lengkap. + 3. Tetapkan opsi untuk merender file Photoshop ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan Photoshop + string filePath = "input.psd"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file Photoshop ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "Photoshop" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/photoshop.it.md b/content/viewer/net/photoshop.it.md new file mode 100644 index 00000000..552e8071 --- /dev/null +++ b/content/viewer/net/photoshop.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET Photoshop: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare Photoshop in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file Photoshop per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file Photoshop in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file Photoshop in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di Photoshop in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file Photoshop con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file Photoshop nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input Photoshop + string filePath = "input.psd"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file Photoshop in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "Photoshop" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/photoshop.ja.md b/content/viewer/net/photoshop.ja.md new file mode 100644 index 00000000..70698111 --- /dev/null +++ b/content/viewer/net/photoshop.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Photoshop ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで Photoshop を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の Photoshop ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで Photoshop ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で Photoshop ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で Photoshop を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、Photoshop ファイルをフルパスでロードします。 + 3. Photoshop ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 Photoshop ファイルを設定する + string filePath = "input.psd"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた Photoshop ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "Photoshop" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/photoshop.ko.md b/content/viewer/net/photoshop.ko.md new file mode 100644 index 00000000..0ceeac7e --- /dev/null +++ b/content/viewer/net/photoshop.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Photoshop 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 Photoshop을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 Photoshop 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 Photoshop 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 Photoshop 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 Photoshop을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 Photoshop 파일을 로드합니다. + 3. Photoshop 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 Photoshop 파일 설정 + string filePath = "input.psd"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 Photoshop 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "Photoshop" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/photoshop.pt.md b/content/viewer/net/photoshop.pt.md new file mode 100644 index 00000000..beda0d7c --- /dev/null +++ b/content/viewer/net/photoshop.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Photoshop API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir Photoshop em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos Photoshop para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos Photoshop em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo Photoshop em C#" + content: | + Com GroupDocs.Viewer você pode renderizar Photoshop para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo Photoshop com caminho completo. + 3. Defina opções para renderizar o arquivo Photoshop em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada Photoshop + string filePath = "input.psd"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo Photoshop em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "Photoshop" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/photoshop.ru.md b/content/viewer/net/photoshop.ru.md new file mode 100644 index 00000000..b002b856 --- /dev/null +++ b/content/viewer/net/photoshop.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Photoshop API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения Photoshop в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "Photoshop средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла Photoshop в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла Photoshop в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать Photoshop в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл Photoshop с полным путем. + 3. Установите параметры для преобразования файла Photoshop в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл Photoshop + string filePath = "input.psd"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл Photoshop в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "Photoshop" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/photoshop.th.md b/content/viewer/net/photoshop.th.md new file mode 100644 index 00000000..74a1282f --- /dev/null +++ b/content/viewer/net/photoshop.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Photoshop Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง Photoshop ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ Photoshop สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ Photoshop ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ Photoshop ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล Photoshop เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ Photoshop ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ Photoshop เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต Photoshop + string filePath = "input.psd"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ Photoshop เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "Photoshop" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/photoshop.uk.md b/content/viewer/net/photoshop.uk.md new file mode 100644 index 00000000..7a767f31 --- /dev/null +++ b/content/viewer/net/photoshop.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Photoshop Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення Photoshop у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів Photoshop для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу Photoshop у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу Photoshop у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити Photoshop у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл Photoshop із повним шляхом. + 3. Встановіть параметри для перетворення файлу Photoshop у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл Photoshop + string filePath = "input.psd"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл Photoshop у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "Photoshop" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/photoshop.vi.md b/content/viewer/net/photoshop.vi.md new file mode 100644 index 00000000..4760d2a8 --- /dev/null +++ b/content/viewer/net/photoshop.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET Photoshop - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị Photoshop trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp Photoshop dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp Photoshop trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp Photoshop trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị Photoshop thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp Photoshop với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp Photoshop thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp Photoshop đầu vào + string filePath = "input.psd"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp Photoshop thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "Photoshop" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/photoshop.zh.md b/content/viewer/net/photoshop.zh.md new file mode 100644 index 00000000..1d4bbdb1 --- /dev/null +++ b/content/viewer/net/photoshop.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Photoshop Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 Photoshop。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 Photoshop 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 Photoshop 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 Photoshop 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 Photoshop 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 Photoshop 文件。 + 3. 设置选项以将 Photoshop 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 Photoshop 文件 + string filePath = "input.psd"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 Photoshop 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "Photoshop" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/php.de.md b/content/viewer/net/php.de.md new file mode 100644 index 00000000..54436b81 --- /dev/null +++ b/content/viewer/net/php.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PHP Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PHP in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "PHP Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PHP-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der PHP-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie PHP in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei PHP mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei PHP im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei PHP ein + string filePath = "input.php"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei PHP mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "PHP" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/php.en.md b/content/viewer/net/php.en.md new file mode 100644 index 00000000..a226d68b --- /dev/null +++ b/content/viewer/net/php.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:48 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PHP Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display PHP in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "PHP file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display PHP file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render PHP file in C#" + content: | + With GroupDocs.Viewer you can render PHP to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the PHP file with full path. + 3. Set options to render PHP file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input PHP file + string filePath = "input.php"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render PHP file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "PHP" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/php.es.md b/content/viewer/net/php.es.md new file mode 100644 index 00000000..4c93550d --- /dev/null +++ b/content/viewer/net/php.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PHP API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar PHP en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "PHP visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos PHP en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo PHP en C#" + content: | + Con GroupDocs.Viewer puede renderizar PHP a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo PHP con la ruta completa. + 3. Configure opciones para representar el archivo PHP en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada PHP + string filePath = "input.php"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo PHP a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "PHP" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/php.fa.md b/content/viewer/net/php.fa.md new file mode 100644 index 00000000..c4531fd8 --- /dev/null +++ b/content/viewer/net/php.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PHP بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش PHP در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل PHP برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل PHP در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل PHP در C#" + content: | + با GroupDocs.Viewer می‌توانید PHP را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل PHP را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل PHP در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی PHP را تنظیم کنید + string filePath = "input.php"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل PHP را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "PHP" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/php.fr.md b/content/viewer/net/php.fr.md new file mode 100644 index 00000000..3327ef9f --- /dev/null +++ b/content/viewer/net/php.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET PHP - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher PHP dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "PHP visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier PHP dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier PHP dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer PHP au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier PHP avec le chemin complet. + 3. Définissez les options pour restituer le fichier PHP au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée PHP + string filePath = "input.php"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier PHP au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "PHP" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/php.id.md b/content/viewer/net/php.id.md new file mode 100644 index 00000000..abf202f9 --- /dev/null +++ b/content/viewer/net/php.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PHP Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan PHP di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "PHP penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file PHP dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file PHP di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender PHP ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file PHP dengan path lengkap. + 3. Tetapkan opsi untuk merender file PHP ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan PHP + string filePath = "input.php"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file PHP ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "PHP" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/php.it.md b/content/viewer/net/php.it.md new file mode 100644 index 00000000..ac6ec2a9 --- /dev/null +++ b/content/viewer/net/php.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET PHP: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare PHP in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file PHP per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file PHP in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file PHP in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di PHP in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file PHP con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file PHP nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input PHP + string filePath = "input.php"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file PHP in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "PHP" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/php.ja.md b/content/viewer/net/php.ja.md new file mode 100644 index 00000000..a3822d7e --- /dev/null +++ b/content/viewer/net/php.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PHP ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PHP を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の PHP ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PHP ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で PHP ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で PHP を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、PHP ファイルをフルパスでロードします。 + 3. PHP ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 PHP ファイルを設定する + string filePath = "input.php"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた PHP ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "PHP" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/php.ko.md b/content/viewer/net/php.ko.md new file mode 100644 index 00000000..80ddbd17 --- /dev/null +++ b/content/viewer/net/php.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PHP 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PHP을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 PHP 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PHP 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 PHP 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 PHP을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 PHP 파일을 로드합니다. + 3. PHP 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 PHP 파일 설정 + string filePath = "input.php"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 PHP 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "PHP" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/php.pt.md b/content/viewer/net/php.pt.md new file mode 100644 index 00000000..e0659a94 --- /dev/null +++ b/content/viewer/net/php.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PHP API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir PHP em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos PHP para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos PHP em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo PHP em C#" + content: | + Com GroupDocs.Viewer você pode renderizar PHP para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo PHP com caminho completo. + 3. Defina opções para renderizar o arquivo PHP em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada PHP + string filePath = "input.php"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo PHP em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "PHP" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/php.ru.md b/content/viewer/net/php.ru.md new file mode 100644 index 00000000..47687841 --- /dev/null +++ b/content/viewer/net/php.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PHP API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения PHP в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "PHP средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла PHP в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла PHP в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать PHP в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл PHP с полным путем. + 3. Установите параметры для преобразования файла PHP в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл PHP + string filePath = "input.php"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл PHP в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "PHP" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/php.th.md b/content/viewer/net/php.th.md new file mode 100644 index 00000000..39302a30 --- /dev/null +++ b/content/viewer/net/php.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PHP Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง PHP ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ PHP สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ PHP ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ PHP ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล PHP เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ PHP ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ PHP เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต PHP + string filePath = "input.php"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ PHP เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "PHP" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/php.uk.md b/content/viewer/net/php.uk.md new file mode 100644 index 00000000..1f87c4fe --- /dev/null +++ b/content/viewer/net/php.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PHP Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення PHP у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів PHP для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу PHP у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу PHP у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити PHP у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл PHP із повним шляхом. + 3. Встановіть параметри для перетворення файлу PHP у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл PHP + string filePath = "input.php"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл PHP у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "PHP" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/php.vi.md b/content/viewer/net/php.vi.md new file mode 100644 index 00000000..1fae5b4a --- /dev/null +++ b/content/viewer/net/php.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET PHP - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị PHP trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp PHP dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp PHP trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp PHP trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị PHP thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp PHP với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp PHP thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp PHP đầu vào + string filePath = "input.php"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp PHP thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "PHP" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/php.zh.md b/content/viewer/net/php.zh.md new file mode 100644 index 00000000..e2e8aa7a --- /dev/null +++ b/content/viewer/net/php.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PHP Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PHP。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 PHP 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PHP 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 PHP 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 PHP 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 PHP 文件。 + 3. 设置选项以将 PHP 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 PHP 文件 + string filePath = "input.php"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 PHP 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "PHP" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pl.de.md b/content/viewer/net/pl.de.md new file mode 100644 index 00000000..9d738b72 --- /dev/null +++ b/content/viewer/net/pl.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PL Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PL in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "PL Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PL-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der PL-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie PL in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei PL mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei PL im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei PL ein + string filePath = "input.pl"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei PL mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "PL" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pl.en.md b/content/viewer/net/pl.en.md new file mode 100644 index 00000000..7616036b --- /dev/null +++ b/content/viewer/net/pl.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PL Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display PL in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "PL file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display PL file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render PL file in C#" + content: | + With GroupDocs.Viewer you can render PL to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the PL file with full path. + 3. Set options to render PL file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input PL file + string filePath = "input.pl"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render PL file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "PL" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pl.es.md b/content/viewer/net/pl.es.md new file mode 100644 index 00000000..9c42653d --- /dev/null +++ b/content/viewer/net/pl.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PL API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar PL en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "PL visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos PL en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo PL en C#" + content: | + Con GroupDocs.Viewer puede renderizar PL a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo PL con la ruta completa. + 3. Configure opciones para representar el archivo PL en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada PL + string filePath = "input.pl"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo PL a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "PL" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pl.fa.md b/content/viewer/net/pl.fa.md new file mode 100644 index 00000000..6f9d3a5a --- /dev/null +++ b/content/viewer/net/pl.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PL بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش PL در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل PL برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل PL در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل PL در C#" + content: | + با GroupDocs.Viewer می‌توانید PL را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل PL را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل PL در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی PL را تنظیم کنید + string filePath = "input.pl"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل PL را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "PL" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pl.fr.md b/content/viewer/net/pl.fr.md new file mode 100644 index 00000000..0c07d2f6 --- /dev/null +++ b/content/viewer/net/pl.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET PL - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher PL dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "PL visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier PL dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier PL dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer PL au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier PL avec le chemin complet. + 3. Définissez les options pour restituer le fichier PL au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée PL + string filePath = "input.pl"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier PL au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "PL" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pl.id.md b/content/viewer/net/pl.id.md new file mode 100644 index 00000000..d3fdd454 --- /dev/null +++ b/content/viewer/net/pl.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PL Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan PL di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "PL penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file PL dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file PL di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender PL ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file PL dengan path lengkap. + 3. Tetapkan opsi untuk merender file PL ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan PL + string filePath = "input.pl"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file PL ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "PL" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pl.it.md b/content/viewer/net/pl.it.md new file mode 100644 index 00000000..3b3a212a --- /dev/null +++ b/content/viewer/net/pl.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET PL: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare PL in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file PL per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file PL in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file PL in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di PL in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file PL con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file PL nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input PL + string filePath = "input.pl"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file PL in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "PL" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pl.ja.md b/content/viewer/net/pl.ja.md new file mode 100644 index 00000000..97033ae7 --- /dev/null +++ b/content/viewer/net/pl.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PL ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PL を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の PL ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PL ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で PL ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で PL を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、PL ファイルをフルパスでロードします。 + 3. PL ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 PL ファイルを設定する + string filePath = "input.pl"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた PL ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "PL" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pl.ko.md b/content/viewer/net/pl.ko.md new file mode 100644 index 00000000..416a5031 --- /dev/null +++ b/content/viewer/net/pl.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PL 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PL을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 PL 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PL 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 PL 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 PL을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 PL 파일을 로드합니다. + 3. PL 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 PL 파일 설정 + string filePath = "input.pl"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 PL 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "PL" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pl.pt.md b/content/viewer/net/pl.pt.md new file mode 100644 index 00000000..caa0109e --- /dev/null +++ b/content/viewer/net/pl.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PL API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir PL em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos PL para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos PL em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo PL em C#" + content: | + Com GroupDocs.Viewer você pode renderizar PL para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo PL com caminho completo. + 3. Defina opções para renderizar o arquivo PL em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada PL + string filePath = "input.pl"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo PL em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "PL" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pl.ru.md b/content/viewer/net/pl.ru.md new file mode 100644 index 00000000..c7f7b9fa --- /dev/null +++ b/content/viewer/net/pl.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PL API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения PL в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "PL средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла PL в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла PL в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать PL в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл PL с полным путем. + 3. Установите параметры для преобразования файла PL в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл PL + string filePath = "input.pl"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл PL в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "PL" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pl.th.md b/content/viewer/net/pl.th.md new file mode 100644 index 00000000..278803b6 --- /dev/null +++ b/content/viewer/net/pl.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PL Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง PL ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ PL สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ PL ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ PL ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล PL เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ PL ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ PL เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต PL + string filePath = "input.pl"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ PL เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "PL" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pl.uk.md b/content/viewer/net/pl.uk.md new file mode 100644 index 00000000..2fa54bdb --- /dev/null +++ b/content/viewer/net/pl.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PL Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення PL у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів PL для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу PL у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу PL у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити PL у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл PL із повним шляхом. + 3. Встановіть параметри для перетворення файлу PL у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл PL + string filePath = "input.pl"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл PL у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "PL" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pl.vi.md b/content/viewer/net/pl.vi.md new file mode 100644 index 00000000..1289286f --- /dev/null +++ b/content/viewer/net/pl.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET PL - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị PL trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp PL dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp PL trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp PL trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị PL thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp PL với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp PL thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp PL đầu vào + string filePath = "input.pl"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp PL thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "PL" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pl.zh.md b/content/viewer/net/pl.zh.md new file mode 100644 index 00000000..5fde5e40 --- /dev/null +++ b/content/viewer/net/pl.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PL Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PL。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 PL 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PL 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 PL 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 PL 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 PL 文件。 + 3. 设置选项以将 PL 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 PL 文件 + string filePath = "input.pl"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 PL 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "PL" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/plt.de.md b/content/viewer/net/plt.de.md new file mode 100644 index 00000000..21fc11d5 --- /dev/null +++ b/content/viewer/net/plt.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PLT Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PLT in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "PLT Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PLT-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der PLT-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie PLT in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei PLT mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei PLT im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei PLT ein + string filePath = "input.plt"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei PLT mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "PLT" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/plt.en.md b/content/viewer/net/plt.en.md new file mode 100644 index 00000000..b47e87bb --- /dev/null +++ b/content/viewer/net/plt.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PLT Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display PLT in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "PLT file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display PLT file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render PLT file in C#" + content: | + With GroupDocs.Viewer you can render PLT to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the PLT file with full path. + 3. Set options to render PLT file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input PLT file + string filePath = "input.plt"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render PLT file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "PLT" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/plt.es.md b/content/viewer/net/plt.es.md new file mode 100644 index 00000000..d9a53437 --- /dev/null +++ b/content/viewer/net/plt.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PLT API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar PLT en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "PLT visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos PLT en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo PLT en C#" + content: | + Con GroupDocs.Viewer puede renderizar PLT a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo PLT con la ruta completa. + 3. Configure opciones para representar el archivo PLT en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada PLT + string filePath = "input.plt"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo PLT a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "PLT" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/plt.fa.md b/content/viewer/net/plt.fa.md new file mode 100644 index 00000000..ae06c3cc --- /dev/null +++ b/content/viewer/net/plt.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PLT بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش PLT در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل PLT برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل PLT در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل PLT در C#" + content: | + با GroupDocs.Viewer می‌توانید PLT را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل PLT را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل PLT در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی PLT را تنظیم کنید + string filePath = "input.plt"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل PLT را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "PLT" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/plt.fr.md b/content/viewer/net/plt.fr.md new file mode 100644 index 00000000..4b17c826 --- /dev/null +++ b/content/viewer/net/plt.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET PLT - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher PLT dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "PLT visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier PLT dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier PLT dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer PLT au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier PLT avec le chemin complet. + 3. Définissez les options pour restituer le fichier PLT au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée PLT + string filePath = "input.plt"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier PLT au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "PLT" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/plt.id.md b/content/viewer/net/plt.id.md new file mode 100644 index 00000000..3ab22665 --- /dev/null +++ b/content/viewer/net/plt.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PLT Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan PLT di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "PLT penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file PLT dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file PLT di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender PLT ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file PLT dengan path lengkap. + 3. Tetapkan opsi untuk merender file PLT ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan PLT + string filePath = "input.plt"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file PLT ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "PLT" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/plt.it.md b/content/viewer/net/plt.it.md new file mode 100644 index 00000000..f058ff24 --- /dev/null +++ b/content/viewer/net/plt.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET PLT: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare PLT in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file PLT per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file PLT in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file PLT in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di PLT in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file PLT con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file PLT nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input PLT + string filePath = "input.plt"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file PLT in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "PLT" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/plt.ja.md b/content/viewer/net/plt.ja.md new file mode 100644 index 00000000..668f4ef4 --- /dev/null +++ b/content/viewer/net/plt.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PLT ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PLT を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の PLT ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PLT ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で PLT ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で PLT を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、PLT ファイルをフルパスでロードします。 + 3. PLT ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 PLT ファイルを設定する + string filePath = "input.plt"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた PLT ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "PLT" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/plt.ko.md b/content/viewer/net/plt.ko.md new file mode 100644 index 00000000..8b5540c5 --- /dev/null +++ b/content/viewer/net/plt.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PLT 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PLT을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 PLT 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PLT 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 PLT 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 PLT을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 PLT 파일을 로드합니다. + 3. PLT 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 PLT 파일 설정 + string filePath = "input.plt"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 PLT 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "PLT" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/plt.pt.md b/content/viewer/net/plt.pt.md new file mode 100644 index 00000000..4ff29e82 --- /dev/null +++ b/content/viewer/net/plt.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PLT API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir PLT em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos PLT para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos PLT em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo PLT em C#" + content: | + Com GroupDocs.Viewer você pode renderizar PLT para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo PLT com caminho completo. + 3. Defina opções para renderizar o arquivo PLT em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada PLT + string filePath = "input.plt"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo PLT em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "PLT" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/plt.ru.md b/content/viewer/net/plt.ru.md new file mode 100644 index 00000000..63a4ba8b --- /dev/null +++ b/content/viewer/net/plt.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PLT API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения PLT в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "PLT средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла PLT в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла PLT в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать PLT в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл PLT с полным путем. + 3. Установите параметры для преобразования файла PLT в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл PLT + string filePath = "input.plt"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл PLT в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "PLT" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/plt.th.md b/content/viewer/net/plt.th.md new file mode 100644 index 00000000..3a0a8dfe --- /dev/null +++ b/content/viewer/net/plt.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PLT Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง PLT ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ PLT สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ PLT ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ PLT ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล PLT เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ PLT ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ PLT เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต PLT + string filePath = "input.plt"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ PLT เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "PLT" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/plt.uk.md b/content/viewer/net/plt.uk.md new file mode 100644 index 00000000..9ce3cd23 --- /dev/null +++ b/content/viewer/net/plt.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PLT Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення PLT у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів PLT для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу PLT у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу PLT у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити PLT у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл PLT із повним шляхом. + 3. Встановіть параметри для перетворення файлу PLT у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл PLT + string filePath = "input.plt"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл PLT у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "PLT" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/plt.vi.md b/content/viewer/net/plt.vi.md new file mode 100644 index 00000000..a40d4de2 --- /dev/null +++ b/content/viewer/net/plt.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET PLT - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị PLT trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp PLT dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp PLT trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp PLT trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị PLT thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp PLT với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp PLT thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp PLT đầu vào + string filePath = "input.plt"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp PLT thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "PLT" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/plt.zh.md b/content/viewer/net/plt.zh.md new file mode 100644 index 00000000..eab38449 --- /dev/null +++ b/content/viewer/net/plt.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PLT Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PLT。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 PLT 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PLT 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 PLT 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 PLT 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 PLT 文件。 + 3. 设置选项以将 PLT 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 PLT 文件 + string filePath = "input.plt"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 PLT 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "PLT" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/png.de.md b/content/viewer/net/png.de.md new file mode 100644 index 00000000..d981ab97 --- /dev/null +++ b/content/viewer/net/png.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PNG Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PNG in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "PNG Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PNG-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der PNG-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie PNG in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei PNG mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei PNG im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei PNG ein + string filePath = "input.png"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei PNG mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "PNG" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/png.en.md b/content/viewer/net/png.en.md new file mode 100644 index 00000000..d3d1a669 --- /dev/null +++ b/content/viewer/net/png.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PNG Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display PNG in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "PNG file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display PNG file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render PNG file in C#" + content: | + With GroupDocs.Viewer you can render PNG to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the PNG file with full path. + 3. Set options to render PNG file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input PNG file + string filePath = "input.png"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render PNG file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "PNG" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/png.es.md b/content/viewer/net/png.es.md new file mode 100644 index 00000000..f0a6526b --- /dev/null +++ b/content/viewer/net/png.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PNG API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar PNG en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "PNG visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos PNG en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo PNG en C#" + content: | + Con GroupDocs.Viewer puede renderizar PNG a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo PNG con la ruta completa. + 3. Configure opciones para representar el archivo PNG en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada PNG + string filePath = "input.png"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo PNG a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "PNG" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/png.fa.md b/content/viewer/net/png.fa.md new file mode 100644 index 00000000..83bb37c3 --- /dev/null +++ b/content/viewer/net/png.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PNG بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش PNG در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل PNG برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل PNG در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل PNG در C#" + content: | + با GroupDocs.Viewer می‌توانید PNG را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل PNG را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل PNG در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی PNG را تنظیم کنید + string filePath = "input.png"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل PNG را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "PNG" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/png.fr.md b/content/viewer/net/png.fr.md new file mode 100644 index 00000000..eef94217 --- /dev/null +++ b/content/viewer/net/png.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET PNG - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher PNG dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "PNG visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier PNG dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier PNG dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer PNG au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier PNG avec le chemin complet. + 3. Définissez les options pour restituer le fichier PNG au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée PNG + string filePath = "input.png"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier PNG au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "PNG" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/png.id.md b/content/viewer/net/png.id.md new file mode 100644 index 00000000..e83a9294 --- /dev/null +++ b/content/viewer/net/png.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PNG Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan PNG di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "PNG penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file PNG dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file PNG di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender PNG ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file PNG dengan path lengkap. + 3. Tetapkan opsi untuk merender file PNG ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan PNG + string filePath = "input.png"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file PNG ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "PNG" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/png.it.md b/content/viewer/net/png.it.md new file mode 100644 index 00000000..f0a7a4af --- /dev/null +++ b/content/viewer/net/png.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET PNG: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare PNG in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file PNG per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file PNG in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file PNG in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di PNG in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file PNG con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file PNG nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input PNG + string filePath = "input.png"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file PNG in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "PNG" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/png.ja.md b/content/viewer/net/png.ja.md new file mode 100644 index 00000000..7b936c3a --- /dev/null +++ b/content/viewer/net/png.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PNG ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PNG を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の PNG ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PNG ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で PNG ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で PNG を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、PNG ファイルをフルパスでロードします。 + 3. PNG ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 PNG ファイルを設定する + string filePath = "input.png"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた PNG ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "PNG" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/png.ko.md b/content/viewer/net/png.ko.md new file mode 100644 index 00000000..ca73225f --- /dev/null +++ b/content/viewer/net/png.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PNG 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PNG을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 PNG 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PNG 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 PNG 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 PNG을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 PNG 파일을 로드합니다. + 3. PNG 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 PNG 파일 설정 + string filePath = "input.png"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 PNG 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "PNG" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/png.pt.md b/content/viewer/net/png.pt.md new file mode 100644 index 00000000..0c45e132 --- /dev/null +++ b/content/viewer/net/png.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PNG API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir PNG em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos PNG para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos PNG em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo PNG em C#" + content: | + Com GroupDocs.Viewer você pode renderizar PNG para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo PNG com caminho completo. + 3. Defina opções para renderizar o arquivo PNG em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada PNG + string filePath = "input.png"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo PNG em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "PNG" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/png.ru.md b/content/viewer/net/png.ru.md new file mode 100644 index 00000000..e29dda62 --- /dev/null +++ b/content/viewer/net/png.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PNG API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения PNG в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "PNG средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла PNG в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла PNG в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать PNG в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл PNG с полным путем. + 3. Установите параметры для преобразования файла PNG в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл PNG + string filePath = "input.png"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл PNG в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "PNG" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/png.th.md b/content/viewer/net/png.th.md new file mode 100644 index 00000000..c1a02bff --- /dev/null +++ b/content/viewer/net/png.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PNG Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง PNG ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ PNG สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ PNG ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ PNG ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล PNG เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ PNG ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ PNG เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต PNG + string filePath = "input.png"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ PNG เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "PNG" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/png.uk.md b/content/viewer/net/png.uk.md new file mode 100644 index 00000000..7cb9078c --- /dev/null +++ b/content/viewer/net/png.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PNG Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення PNG у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів PNG для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу PNG у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу PNG у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити PNG у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл PNG із повним шляхом. + 3. Встановіть параметри для перетворення файлу PNG у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл PNG + string filePath = "input.png"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл PNG у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "PNG" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/png.vi.md b/content/viewer/net/png.vi.md new file mode 100644 index 00000000..d124e883 --- /dev/null +++ b/content/viewer/net/png.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET PNG - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị PNG trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp PNG dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp PNG trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp PNG trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị PNG thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp PNG với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp PNG thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp PNG đầu vào + string filePath = "input.png"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp PNG thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "PNG" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/png.zh.md b/content/viewer/net/png.zh.md new file mode 100644 index 00000000..ab483ec9 --- /dev/null +++ b/content/viewer/net/png.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PNG Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PNG。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 PNG 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PNG 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 PNG 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 PNG 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 PNG 文件。 + 3. 设置选项以将 PNG 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 PNG 文件 + string filePath = "input.png"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 PNG 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "PNG" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pot.de.md b/content/viewer/net/pot.de.md new file mode 100644 index 00000000..2c2c7f7c --- /dev/null +++ b/content/viewer/net/pot.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POT Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von POT in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "POT Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von POT-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der POT-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie POT in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei POT mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei POT im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei POT ein + string filePath = "input.pot"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei POT mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "POT" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pot.en.md b/content/viewer/net/pot.en.md new file mode 100644 index 00000000..f90430fd --- /dev/null +++ b/content/viewer/net/pot.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POT Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display POT in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "POT file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display POT file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render POT file in C#" + content: | + With GroupDocs.Viewer you can render POT to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the POT file with full path. + 3. Set options to render POT file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input POT file + string filePath = "input.pot"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render POT file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "POT" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pot.es.md b/content/viewer/net/pot.es.md new file mode 100644 index 00000000..9dee8d66 --- /dev/null +++ b/content/viewer/net/pot.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POT API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar POT en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "POT visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos POT en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo POT en C#" + content: | + Con GroupDocs.Viewer puede renderizar POT a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo POT con la ruta completa. + 3. Configure opciones para representar el archivo POT en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada POT + string filePath = "input.pot"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo POT a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "POT" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pot.fa.md b/content/viewer/net/pot.fa.md new file mode 100644 index 00000000..125e1871 --- /dev/null +++ b/content/viewer/net/pot.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POT بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش POT در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل POT برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل POT در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل POT در C#" + content: | + با GroupDocs.Viewer می‌توانید POT را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل POT را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل POT در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی POT را تنظیم کنید + string filePath = "input.pot"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل POT را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "POT" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pot.fr.md b/content/viewer/net/pot.fr.md new file mode 100644 index 00000000..a2e8985b --- /dev/null +++ b/content/viewer/net/pot.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET POT - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher POT dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "POT visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier POT dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier POT dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer POT au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier POT avec le chemin complet. + 3. Définissez les options pour restituer le fichier POT au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée POT + string filePath = "input.pot"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier POT au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "POT" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pot.id.md b/content/viewer/net/pot.id.md new file mode 100644 index 00000000..ff3af375 --- /dev/null +++ b/content/viewer/net/pot.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POT Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan POT di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "POT penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file POT dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file POT di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender POT ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file POT dengan path lengkap. + 3. Tetapkan opsi untuk merender file POT ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan POT + string filePath = "input.pot"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file POT ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "POT" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pot.it.md b/content/viewer/net/pot.it.md new file mode 100644 index 00000000..19100bbc --- /dev/null +++ b/content/viewer/net/pot.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET POT: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare POT in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file POT per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file POT in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file POT in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di POT in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file POT con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file POT nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input POT + string filePath = "input.pot"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file POT in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "POT" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pot.ja.md b/content/viewer/net/pot.ja.md new file mode 100644 index 00000000..468c8791 --- /dev/null +++ b/content/viewer/net/pot.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POT ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで POT を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の POT ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで POT ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で POT ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で POT を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、POT ファイルをフルパスでロードします。 + 3. POT ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 POT ファイルを設定する + string filePath = "input.pot"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた POT ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "POT" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pot.ko.md b/content/viewer/net/pot.ko.md new file mode 100644 index 00000000..242eb5cb --- /dev/null +++ b/content/viewer/net/pot.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POT 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 POT을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 POT 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 POT 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 POT 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 POT을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 POT 파일을 로드합니다. + 3. POT 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 POT 파일 설정 + string filePath = "input.pot"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 POT 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "POT" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pot.pt.md b/content/viewer/net/pot.pt.md new file mode 100644 index 00000000..ac1677a2 --- /dev/null +++ b/content/viewer/net/pot.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POT API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir POT em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos POT para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos POT em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo POT em C#" + content: | + Com GroupDocs.Viewer você pode renderizar POT para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo POT com caminho completo. + 3. Defina opções para renderizar o arquivo POT em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada POT + string filePath = "input.pot"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo POT em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "POT" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pot.ru.md b/content/viewer/net/pot.ru.md new file mode 100644 index 00000000..7313d8c9 --- /dev/null +++ b/content/viewer/net/pot.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POT API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения POT в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "POT средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла POT в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла POT в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать POT в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл POT с полным путем. + 3. Установите параметры для преобразования файла POT в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл POT + string filePath = "input.pot"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл POT в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "POT" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pot.th.md b/content/viewer/net/pot.th.md new file mode 100644 index 00000000..b0df15e9 --- /dev/null +++ b/content/viewer/net/pot.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POT Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง POT ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ POT สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ POT ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ POT ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล POT เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ POT ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ POT เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต POT + string filePath = "input.pot"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ POT เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "POT" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pot.uk.md b/content/viewer/net/pot.uk.md new file mode 100644 index 00000000..25c36986 --- /dev/null +++ b/content/viewer/net/pot.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POT Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення POT у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів POT для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу POT у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу POT у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити POT у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл POT із повним шляхом. + 3. Встановіть параметри для перетворення файлу POT у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл POT + string filePath = "input.pot"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл POT у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "POT" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pot.vi.md b/content/viewer/net/pot.vi.md new file mode 100644 index 00000000..2e2d2b8b --- /dev/null +++ b/content/viewer/net/pot.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET POT - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị POT trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp POT dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp POT trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp POT trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị POT thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp POT với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp POT thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp POT đầu vào + string filePath = "input.pot"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp POT thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "POT" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pot.zh.md b/content/viewer/net/pot.zh.md new file mode 100644 index 00000000..5a740bb3 --- /dev/null +++ b/content/viewer/net/pot.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POT Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 POT。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 POT 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 POT 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 POT 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 POT 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 POT 文件。 + 3. 设置选项以将 POT 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 POT 文件 + string filePath = "input.pot"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 POT 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "POT" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/potm.de.md b/content/viewer/net/potm.de.md new file mode 100644 index 00000000..08f90341 --- /dev/null +++ b/content/viewer/net/potm.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POTM Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von POTM in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "POTM Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von POTM-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der POTM-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie POTM in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei POTM mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei POTM im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei POTM ein + string filePath = "input.potm"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei POTM mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "POTM" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/potm.en.md b/content/viewer/net/potm.en.md new file mode 100644 index 00000000..b66f0b7e --- /dev/null +++ b/content/viewer/net/potm.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POTM Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display POTM in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "POTM file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display POTM file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render POTM file in C#" + content: | + With GroupDocs.Viewer you can render POTM to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the POTM file with full path. + 3. Set options to render POTM file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input POTM file + string filePath = "input.potm"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render POTM file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "POTM" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/potm.es.md b/content/viewer/net/potm.es.md new file mode 100644 index 00000000..55146413 --- /dev/null +++ b/content/viewer/net/potm.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POTM API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar POTM en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "POTM visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos POTM en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo POTM en C#" + content: | + Con GroupDocs.Viewer puede renderizar POTM a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo POTM con la ruta completa. + 3. Configure opciones para representar el archivo POTM en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada POTM + string filePath = "input.potm"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo POTM a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "POTM" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/potm.fa.md b/content/viewer/net/potm.fa.md new file mode 100644 index 00000000..20f6c3a3 --- /dev/null +++ b/content/viewer/net/potm.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POTM بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش POTM در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل POTM برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل POTM در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل POTM در C#" + content: | + با GroupDocs.Viewer می‌توانید POTM را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل POTM را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل POTM در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی POTM را تنظیم کنید + string filePath = "input.potm"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل POTM را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "POTM" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/potm.fr.md b/content/viewer/net/potm.fr.md new file mode 100644 index 00000000..5669dc38 --- /dev/null +++ b/content/viewer/net/potm.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET POTM - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher POTM dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "POTM visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier POTM dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier POTM dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer POTM au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier POTM avec le chemin complet. + 3. Définissez les options pour restituer le fichier POTM au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée POTM + string filePath = "input.potm"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier POTM au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "POTM" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/potm.id.md b/content/viewer/net/potm.id.md new file mode 100644 index 00000000..830c1ee3 --- /dev/null +++ b/content/viewer/net/potm.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POTM Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan POTM di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "POTM penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file POTM dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file POTM di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender POTM ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file POTM dengan path lengkap. + 3. Tetapkan opsi untuk merender file POTM ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan POTM + string filePath = "input.potm"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file POTM ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "POTM" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/potm.it.md b/content/viewer/net/potm.it.md new file mode 100644 index 00000000..0e71dc8c --- /dev/null +++ b/content/viewer/net/potm.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET POTM: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare POTM in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file POTM per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file POTM in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file POTM in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di POTM in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file POTM con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file POTM nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input POTM + string filePath = "input.potm"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file POTM in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "POTM" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/potm.ja.md b/content/viewer/net/potm.ja.md new file mode 100644 index 00000000..eb46f155 --- /dev/null +++ b/content/viewer/net/potm.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POTM ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで POTM を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の POTM ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで POTM ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で POTM ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で POTM を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、POTM ファイルをフルパスでロードします。 + 3. POTM ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 POTM ファイルを設定する + string filePath = "input.potm"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた POTM ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "POTM" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/potm.ko.md b/content/viewer/net/potm.ko.md new file mode 100644 index 00000000..09c67081 --- /dev/null +++ b/content/viewer/net/potm.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POTM 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 POTM을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 POTM 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 POTM 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 POTM 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 POTM을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 POTM 파일을 로드합니다. + 3. POTM 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 POTM 파일 설정 + string filePath = "input.potm"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 POTM 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "POTM" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/potm.pt.md b/content/viewer/net/potm.pt.md new file mode 100644 index 00000000..1727de3c --- /dev/null +++ b/content/viewer/net/potm.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POTM API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir POTM em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos POTM para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos POTM em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo POTM em C#" + content: | + Com GroupDocs.Viewer você pode renderizar POTM para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo POTM com caminho completo. + 3. Defina opções para renderizar o arquivo POTM em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada POTM + string filePath = "input.potm"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo POTM em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "POTM" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/potm.ru.md b/content/viewer/net/potm.ru.md new file mode 100644 index 00000000..527b74bb --- /dev/null +++ b/content/viewer/net/potm.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POTM API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения POTM в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "POTM средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла POTM в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла POTM в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать POTM в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл POTM с полным путем. + 3. Установите параметры для преобразования файла POTM в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл POTM + string filePath = "input.potm"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл POTM в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "POTM" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/potm.th.md b/content/viewer/net/potm.th.md new file mode 100644 index 00000000..9a5f29ed --- /dev/null +++ b/content/viewer/net/potm.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POTM Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง POTM ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ POTM สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ POTM ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ POTM ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล POTM เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ POTM ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ POTM เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต POTM + string filePath = "input.potm"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ POTM เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "POTM" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/potm.uk.md b/content/viewer/net/potm.uk.md new file mode 100644 index 00000000..0a693ea6 --- /dev/null +++ b/content/viewer/net/potm.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POTM Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення POTM у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів POTM для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу POTM у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу POTM у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити POTM у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл POTM із повним шляхом. + 3. Встановіть параметри для перетворення файлу POTM у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл POTM + string filePath = "input.potm"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл POTM у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "POTM" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/potm.vi.md b/content/viewer/net/potm.vi.md new file mode 100644 index 00000000..7909e290 --- /dev/null +++ b/content/viewer/net/potm.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET POTM - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị POTM trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp POTM dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp POTM trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp POTM trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị POTM thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp POTM với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp POTM thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp POTM đầu vào + string filePath = "input.potm"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp POTM thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "POTM" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/potm.zh.md b/content/viewer/net/potm.zh.md new file mode 100644 index 00000000..b1e1b326 --- /dev/null +++ b/content/viewer/net/potm.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POTM Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 POTM。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 POTM 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 POTM 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 POTM 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 POTM 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 POTM 文件。 + 3. 设置选项以将 POTM 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 POTM 文件 + string filePath = "input.potm"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 POTM 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "POTM" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/potx.de.md b/content/viewer/net/potx.de.md new file mode 100644 index 00000000..7a9b9c0a --- /dev/null +++ b/content/viewer/net/potx.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POTX Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von POTX in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "POTX Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von POTX-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der POTX-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie POTX in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei POTX mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei POTX im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei POTX ein + string filePath = "input.potx"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei POTX mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "POTX" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/potx.en.md b/content/viewer/net/potx.en.md new file mode 100644 index 00000000..9ebc363c --- /dev/null +++ b/content/viewer/net/potx.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POTX Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display POTX in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "POTX file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display POTX file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render POTX file in C#" + content: | + With GroupDocs.Viewer you can render POTX to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the POTX file with full path. + 3. Set options to render POTX file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input POTX file + string filePath = "input.potx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render POTX file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "POTX" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/potx.es.md b/content/viewer/net/potx.es.md new file mode 100644 index 00000000..9046a334 --- /dev/null +++ b/content/viewer/net/potx.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POTX API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar POTX en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "POTX visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos POTX en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo POTX en C#" + content: | + Con GroupDocs.Viewer puede renderizar POTX a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo POTX con la ruta completa. + 3. Configure opciones para representar el archivo POTX en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada POTX + string filePath = "input.potx"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo POTX a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "POTX" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/potx.fa.md b/content/viewer/net/potx.fa.md new file mode 100644 index 00000000..9d5ae682 --- /dev/null +++ b/content/viewer/net/potx.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POTX بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش POTX در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل POTX برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل POTX در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل POTX در C#" + content: | + با GroupDocs.Viewer می‌توانید POTX را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل POTX را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل POTX در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی POTX را تنظیم کنید + string filePath = "input.potx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل POTX را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "POTX" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/potx.fr.md b/content/viewer/net/potx.fr.md new file mode 100644 index 00000000..d1eb2f71 --- /dev/null +++ b/content/viewer/net/potx.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET POTX - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher POTX dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "POTX visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier POTX dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier POTX dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer POTX au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier POTX avec le chemin complet. + 3. Définissez les options pour restituer le fichier POTX au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée POTX + string filePath = "input.potx"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier POTX au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "POTX" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/potx.id.md b/content/viewer/net/potx.id.md new file mode 100644 index 00000000..158c49bd --- /dev/null +++ b/content/viewer/net/potx.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POTX Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan POTX di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "POTX penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file POTX dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file POTX di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender POTX ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file POTX dengan path lengkap. + 3. Tetapkan opsi untuk merender file POTX ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan POTX + string filePath = "input.potx"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file POTX ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "POTX" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/potx.it.md b/content/viewer/net/potx.it.md new file mode 100644 index 00000000..9ca42dff --- /dev/null +++ b/content/viewer/net/potx.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET POTX: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare POTX in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file POTX per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file POTX in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file POTX in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di POTX in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file POTX con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file POTX nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input POTX + string filePath = "input.potx"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file POTX in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "POTX" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/potx.ja.md b/content/viewer/net/potx.ja.md new file mode 100644 index 00000000..00dc0262 --- /dev/null +++ b/content/viewer/net/potx.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POTX ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで POTX を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の POTX ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで POTX ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で POTX ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で POTX を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、POTX ファイルをフルパスでロードします。 + 3. POTX ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 POTX ファイルを設定する + string filePath = "input.potx"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた POTX ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "POTX" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/potx.ko.md b/content/viewer/net/potx.ko.md new file mode 100644 index 00000000..28a60056 --- /dev/null +++ b/content/viewer/net/potx.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POTX 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 POTX을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 POTX 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 POTX 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 POTX 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 POTX을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 POTX 파일을 로드합니다. + 3. POTX 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 POTX 파일 설정 + string filePath = "input.potx"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 POTX 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "POTX" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/potx.pt.md b/content/viewer/net/potx.pt.md new file mode 100644 index 00000000..d5c0ac25 --- /dev/null +++ b/content/viewer/net/potx.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POTX API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir POTX em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos POTX para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos POTX em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo POTX em C#" + content: | + Com GroupDocs.Viewer você pode renderizar POTX para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo POTX com caminho completo. + 3. Defina opções para renderizar o arquivo POTX em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada POTX + string filePath = "input.potx"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo POTX em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "POTX" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/potx.ru.md b/content/viewer/net/potx.ru.md new file mode 100644 index 00000000..69a6157c --- /dev/null +++ b/content/viewer/net/potx.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POTX API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения POTX в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "POTX средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла POTX в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла POTX в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать POTX в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл POTX с полным путем. + 3. Установите параметры для преобразования файла POTX в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл POTX + string filePath = "input.potx"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл POTX в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "POTX" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/potx.th.md b/content/viewer/net/potx.th.md new file mode 100644 index 00000000..fd74bda1 --- /dev/null +++ b/content/viewer/net/potx.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POTX Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง POTX ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ POTX สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ POTX ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ POTX ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล POTX เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ POTX ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ POTX เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต POTX + string filePath = "input.potx"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ POTX เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "POTX" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/potx.uk.md b/content/viewer/net/potx.uk.md new file mode 100644 index 00000000..3064e716 --- /dev/null +++ b/content/viewer/net/potx.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POTX Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення POTX у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів POTX для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу POTX у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу POTX у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити POTX у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл POTX із повним шляхом. + 3. Встановіть параметри для перетворення файлу POTX у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл POTX + string filePath = "input.potx"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл POTX у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "POTX" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/potx.vi.md b/content/viewer/net/potx.vi.md new file mode 100644 index 00000000..3089a289 --- /dev/null +++ b/content/viewer/net/potx.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET POTX - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị POTX trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp POTX dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp POTX trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp POTX trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị POTX thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp POTX với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp POTX thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp POTX đầu vào + string filePath = "input.potx"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp POTX thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "POTX" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/potx.zh.md b/content/viewer/net/potx.zh.md new file mode 100644 index 00000000..7e78841f --- /dev/null +++ b/content/viewer/net/potx.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET POTX Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 POTX。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 POTX 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 POTX 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 POTX 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 POTX 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 POTX 文件。 + 3. 设置选项以将 POTX 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 POTX 文件 + string filePath = "input.potx"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 POTX 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "POTX" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pps.de.md b/content/viewer/net/pps.de.md new file mode 100644 index 00000000..22172819 --- /dev/null +++ b/content/viewer/net/pps.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPS Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PPS in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "PPS Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PPS-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der PPS-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie PPS in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei PPS mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei PPS im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei PPS ein + string filePath = "input.pps"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei PPS mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "PPS" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pps.en.md b/content/viewer/net/pps.en.md new file mode 100644 index 00000000..87dfcee8 --- /dev/null +++ b/content/viewer/net/pps.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPS Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display PPS in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "PPS file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display PPS file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render PPS file in C#" + content: | + With GroupDocs.Viewer you can render PPS to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the PPS file with full path. + 3. Set options to render PPS file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input PPS file + string filePath = "input.pps"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render PPS file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "PPS" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pps.es.md b/content/viewer/net/pps.es.md new file mode 100644 index 00000000..99790ba2 --- /dev/null +++ b/content/viewer/net/pps.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPS API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar PPS en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "PPS visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos PPS en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo PPS en C#" + content: | + Con GroupDocs.Viewer puede renderizar PPS a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo PPS con la ruta completa. + 3. Configure opciones para representar el archivo PPS en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada PPS + string filePath = "input.pps"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo PPS a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "PPS" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pps.fa.md b/content/viewer/net/pps.fa.md new file mode 100644 index 00000000..9bb66ab3 --- /dev/null +++ b/content/viewer/net/pps.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPS بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش PPS در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل PPS برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل PPS در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل PPS در C#" + content: | + با GroupDocs.Viewer می‌توانید PPS را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل PPS را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل PPS در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی PPS را تنظیم کنید + string filePath = "input.pps"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل PPS را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "PPS" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pps.fr.md b/content/viewer/net/pps.fr.md new file mode 100644 index 00000000..2151aa76 --- /dev/null +++ b/content/viewer/net/pps.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET PPS - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher PPS dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "PPS visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier PPS dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier PPS dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer PPS au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier PPS avec le chemin complet. + 3. Définissez les options pour restituer le fichier PPS au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée PPS + string filePath = "input.pps"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier PPS au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "PPS" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pps.id.md b/content/viewer/net/pps.id.md new file mode 100644 index 00000000..34125cbc --- /dev/null +++ b/content/viewer/net/pps.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPS Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan PPS di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "PPS penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file PPS dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file PPS di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender PPS ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file PPS dengan path lengkap. + 3. Tetapkan opsi untuk merender file PPS ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan PPS + string filePath = "input.pps"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file PPS ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "PPS" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pps.it.md b/content/viewer/net/pps.it.md new file mode 100644 index 00000000..3524aabf --- /dev/null +++ b/content/viewer/net/pps.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET PPS: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare PPS in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file PPS per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file PPS in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file PPS in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di PPS in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file PPS con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file PPS nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input PPS + string filePath = "input.pps"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file PPS in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "PPS" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pps.ja.md b/content/viewer/net/pps.ja.md new file mode 100644 index 00000000..4b473889 --- /dev/null +++ b/content/viewer/net/pps.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPS ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PPS を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の PPS ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PPS ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で PPS ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で PPS を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、PPS ファイルをフルパスでロードします。 + 3. PPS ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 PPS ファイルを設定する + string filePath = "input.pps"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた PPS ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "PPS" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pps.ko.md b/content/viewer/net/pps.ko.md new file mode 100644 index 00000000..9068eeaa --- /dev/null +++ b/content/viewer/net/pps.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPS 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PPS을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 PPS 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PPS 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 PPS 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 PPS을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 PPS 파일을 로드합니다. + 3. PPS 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 PPS 파일 설정 + string filePath = "input.pps"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 PPS 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "PPS" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pps.pt.md b/content/viewer/net/pps.pt.md new file mode 100644 index 00000000..7559c979 --- /dev/null +++ b/content/viewer/net/pps.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPS API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir PPS em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos PPS para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos PPS em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo PPS em C#" + content: | + Com GroupDocs.Viewer você pode renderizar PPS para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo PPS com caminho completo. + 3. Defina opções para renderizar o arquivo PPS em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada PPS + string filePath = "input.pps"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo PPS em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "PPS" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pps.ru.md b/content/viewer/net/pps.ru.md new file mode 100644 index 00000000..2ab7c070 --- /dev/null +++ b/content/viewer/net/pps.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPS API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения PPS в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "PPS средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла PPS в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла PPS в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать PPS в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл PPS с полным путем. + 3. Установите параметры для преобразования файла PPS в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл PPS + string filePath = "input.pps"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл PPS в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "PPS" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pps.th.md b/content/viewer/net/pps.th.md new file mode 100644 index 00000000..d7e816a6 --- /dev/null +++ b/content/viewer/net/pps.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPS Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง PPS ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ PPS สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ PPS ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ PPS ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล PPS เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ PPS ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ PPS เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต PPS + string filePath = "input.pps"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ PPS เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "PPS" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pps.uk.md b/content/viewer/net/pps.uk.md new file mode 100644 index 00000000..31b48f75 --- /dev/null +++ b/content/viewer/net/pps.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPS Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення PPS у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів PPS для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу PPS у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу PPS у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити PPS у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл PPS із повним шляхом. + 3. Встановіть параметри для перетворення файлу PPS у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл PPS + string filePath = "input.pps"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл PPS у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "PPS" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pps.vi.md b/content/viewer/net/pps.vi.md new file mode 100644 index 00000000..a106dc20 --- /dev/null +++ b/content/viewer/net/pps.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET PPS - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị PPS trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp PPS dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp PPS trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp PPS trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị PPS thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp PPS với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp PPS thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp PPS đầu vào + string filePath = "input.pps"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp PPS thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "PPS" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pps.zh.md b/content/viewer/net/pps.zh.md new file mode 100644 index 00000000..200622e0 --- /dev/null +++ b/content/viewer/net/pps.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPS Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PPS。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 PPS 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PPS 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 PPS 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 PPS 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 PPS 文件。 + 3. 设置选项以将 PPS 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 PPS 文件 + string filePath = "input.pps"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 PPS 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "PPS" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppsm.de.md b/content/viewer/net/ppsm.de.md new file mode 100644 index 00000000..aa0e18c0 --- /dev/null +++ b/content/viewer/net/ppsm.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPSM Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PPSM in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "PPSM Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PPSM-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der PPSM-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie PPSM in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei PPSM mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei PPSM im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei PPSM ein + string filePath = "input.ppsm"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei PPSM mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "PPSM" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppsm.en.md b/content/viewer/net/ppsm.en.md new file mode 100644 index 00000000..f13aa578 --- /dev/null +++ b/content/viewer/net/ppsm.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPSM Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display PPSM in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "PPSM file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display PPSM file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render PPSM file in C#" + content: | + With GroupDocs.Viewer you can render PPSM to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the PPSM file with full path. + 3. Set options to render PPSM file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input PPSM file + string filePath = "input.ppsm"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render PPSM file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "PPSM" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppsm.es.md b/content/viewer/net/ppsm.es.md new file mode 100644 index 00000000..1e04ed74 --- /dev/null +++ b/content/viewer/net/ppsm.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPSM API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar PPSM en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "PPSM visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos PPSM en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo PPSM en C#" + content: | + Con GroupDocs.Viewer puede renderizar PPSM a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo PPSM con la ruta completa. + 3. Configure opciones para representar el archivo PPSM en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada PPSM + string filePath = "input.ppsm"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo PPSM a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "PPSM" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppsm.fa.md b/content/viewer/net/ppsm.fa.md new file mode 100644 index 00000000..3a8d4a8c --- /dev/null +++ b/content/viewer/net/ppsm.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPSM بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش PPSM در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل PPSM برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل PPSM در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل PPSM در C#" + content: | + با GroupDocs.Viewer می‌توانید PPSM را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل PPSM را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل PPSM در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی PPSM را تنظیم کنید + string filePath = "input.ppsm"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل PPSM را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "PPSM" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppsm.fr.md b/content/viewer/net/ppsm.fr.md new file mode 100644 index 00000000..2527af69 --- /dev/null +++ b/content/viewer/net/ppsm.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET PPSM - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher PPSM dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "PPSM visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier PPSM dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier PPSM dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer PPSM au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier PPSM avec le chemin complet. + 3. Définissez les options pour restituer le fichier PPSM au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée PPSM + string filePath = "input.ppsm"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier PPSM au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "PPSM" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppsm.id.md b/content/viewer/net/ppsm.id.md new file mode 100644 index 00000000..417d76f5 --- /dev/null +++ b/content/viewer/net/ppsm.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPSM Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan PPSM di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "PPSM penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file PPSM dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file PPSM di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender PPSM ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file PPSM dengan path lengkap. + 3. Tetapkan opsi untuk merender file PPSM ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan PPSM + string filePath = "input.ppsm"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file PPSM ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "PPSM" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppsm.it.md b/content/viewer/net/ppsm.it.md new file mode 100644 index 00000000..4378b9db --- /dev/null +++ b/content/viewer/net/ppsm.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET PPSM: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare PPSM in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file PPSM per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file PPSM in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file PPSM in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di PPSM in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file PPSM con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file PPSM nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input PPSM + string filePath = "input.ppsm"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file PPSM in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "PPSM" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppsm.ja.md b/content/viewer/net/ppsm.ja.md new file mode 100644 index 00000000..ea2fd2c1 --- /dev/null +++ b/content/viewer/net/ppsm.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPSM ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PPSM を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の PPSM ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PPSM ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で PPSM ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で PPSM を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、PPSM ファイルをフルパスでロードします。 + 3. PPSM ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 PPSM ファイルを設定する + string filePath = "input.ppsm"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた PPSM ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "PPSM" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppsm.ko.md b/content/viewer/net/ppsm.ko.md new file mode 100644 index 00000000..82c837a2 --- /dev/null +++ b/content/viewer/net/ppsm.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPSM 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PPSM을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 PPSM 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PPSM 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 PPSM 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 PPSM을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 PPSM 파일을 로드합니다. + 3. PPSM 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 PPSM 파일 설정 + string filePath = "input.ppsm"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 PPSM 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "PPSM" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppsm.pt.md b/content/viewer/net/ppsm.pt.md new file mode 100644 index 00000000..5ec780cd --- /dev/null +++ b/content/viewer/net/ppsm.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPSM API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir PPSM em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos PPSM para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos PPSM em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo PPSM em C#" + content: | + Com GroupDocs.Viewer você pode renderizar PPSM para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo PPSM com caminho completo. + 3. Defina opções para renderizar o arquivo PPSM em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada PPSM + string filePath = "input.ppsm"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo PPSM em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "PPSM" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppsm.ru.md b/content/viewer/net/ppsm.ru.md new file mode 100644 index 00000000..f8138e1b --- /dev/null +++ b/content/viewer/net/ppsm.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPSM API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения PPSM в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "PPSM средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла PPSM в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла PPSM в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать PPSM в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл PPSM с полным путем. + 3. Установите параметры для преобразования файла PPSM в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл PPSM + string filePath = "input.ppsm"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл PPSM в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "PPSM" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppsm.th.md b/content/viewer/net/ppsm.th.md new file mode 100644 index 00000000..26eb5120 --- /dev/null +++ b/content/viewer/net/ppsm.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPSM Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง PPSM ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ PPSM สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ PPSM ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ PPSM ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล PPSM เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ PPSM ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ PPSM เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต PPSM + string filePath = "input.ppsm"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ PPSM เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "PPSM" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppsm.uk.md b/content/viewer/net/ppsm.uk.md new file mode 100644 index 00000000..a5476911 --- /dev/null +++ b/content/viewer/net/ppsm.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPSM Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення PPSM у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів PPSM для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу PPSM у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу PPSM у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити PPSM у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл PPSM із повним шляхом. + 3. Встановіть параметри для перетворення файлу PPSM у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл PPSM + string filePath = "input.ppsm"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл PPSM у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "PPSM" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppsm.vi.md b/content/viewer/net/ppsm.vi.md new file mode 100644 index 00000000..f2cb88d7 --- /dev/null +++ b/content/viewer/net/ppsm.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET PPSM - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị PPSM trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp PPSM dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp PPSM trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp PPSM trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị PPSM thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp PPSM với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp PPSM thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp PPSM đầu vào + string filePath = "input.ppsm"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp PPSM thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "PPSM" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppsm.zh.md b/content/viewer/net/ppsm.zh.md new file mode 100644 index 00000000..6879c2f0 --- /dev/null +++ b/content/viewer/net/ppsm.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPSM Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PPSM。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 PPSM 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PPSM 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 PPSM 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 PPSM 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 PPSM 文件。 + 3. 设置选项以将 PPSM 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 PPSM 文件 + string filePath = "input.ppsm"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 PPSM 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "PPSM" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppsx.de.md b/content/viewer/net/ppsx.de.md new file mode 100644 index 00000000..6745d3fe --- /dev/null +++ b/content/viewer/net/ppsx.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPSX Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PPSX in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "PPSX Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PPSX-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der PPSX-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie PPSX in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei PPSX mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei PPSX im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei PPSX ein + string filePath = "input.ppsx"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei PPSX mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "PPSX" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppsx.en.md b/content/viewer/net/ppsx.en.md new file mode 100644 index 00000000..9114c518 --- /dev/null +++ b/content/viewer/net/ppsx.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPSX Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display PPSX in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "PPSX file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display PPSX file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render PPSX file in C#" + content: | + With GroupDocs.Viewer you can render PPSX to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the PPSX file with full path. + 3. Set options to render PPSX file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input PPSX file + string filePath = "input.ppsx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render PPSX file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "PPSX" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppsx.es.md b/content/viewer/net/ppsx.es.md new file mode 100644 index 00000000..76a33d92 --- /dev/null +++ b/content/viewer/net/ppsx.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPSX API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar PPSX en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "PPSX visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos PPSX en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo PPSX en C#" + content: | + Con GroupDocs.Viewer puede renderizar PPSX a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo PPSX con la ruta completa. + 3. Configure opciones para representar el archivo PPSX en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada PPSX + string filePath = "input.ppsx"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo PPSX a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "PPSX" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppsx.fa.md b/content/viewer/net/ppsx.fa.md new file mode 100644 index 00000000..2c197e19 --- /dev/null +++ b/content/viewer/net/ppsx.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPSX بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش PPSX در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل PPSX برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل PPSX در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل PPSX در C#" + content: | + با GroupDocs.Viewer می‌توانید PPSX را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل PPSX را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل PPSX در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی PPSX را تنظیم کنید + string filePath = "input.ppsx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل PPSX را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "PPSX" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppsx.fr.md b/content/viewer/net/ppsx.fr.md new file mode 100644 index 00000000..1cb8b3df --- /dev/null +++ b/content/viewer/net/ppsx.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET PPSX - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher PPSX dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "PPSX visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier PPSX dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier PPSX dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer PPSX au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier PPSX avec le chemin complet. + 3. Définissez les options pour restituer le fichier PPSX au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée PPSX + string filePath = "input.ppsx"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier PPSX au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "PPSX" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppsx.id.md b/content/viewer/net/ppsx.id.md new file mode 100644 index 00000000..175f3981 --- /dev/null +++ b/content/viewer/net/ppsx.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPSX Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan PPSX di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "PPSX penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file PPSX dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file PPSX di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender PPSX ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file PPSX dengan path lengkap. + 3. Tetapkan opsi untuk merender file PPSX ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan PPSX + string filePath = "input.ppsx"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file PPSX ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "PPSX" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppsx.it.md b/content/viewer/net/ppsx.it.md new file mode 100644 index 00000000..84e7c67a --- /dev/null +++ b/content/viewer/net/ppsx.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET PPSX: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare PPSX in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file PPSX per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file PPSX in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file PPSX in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di PPSX in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file PPSX con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file PPSX nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input PPSX + string filePath = "input.ppsx"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file PPSX in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "PPSX" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppsx.ja.md b/content/viewer/net/ppsx.ja.md new file mode 100644 index 00000000..6d4f840e --- /dev/null +++ b/content/viewer/net/ppsx.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPSX ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PPSX を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の PPSX ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PPSX ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で PPSX ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で PPSX を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、PPSX ファイルをフルパスでロードします。 + 3. PPSX ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 PPSX ファイルを設定する + string filePath = "input.ppsx"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた PPSX ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "PPSX" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppsx.ko.md b/content/viewer/net/ppsx.ko.md new file mode 100644 index 00000000..c22a9a87 --- /dev/null +++ b/content/viewer/net/ppsx.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPSX 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PPSX을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 PPSX 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PPSX 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 PPSX 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 PPSX을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 PPSX 파일을 로드합니다. + 3. PPSX 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 PPSX 파일 설정 + string filePath = "input.ppsx"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 PPSX 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "PPSX" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppsx.pt.md b/content/viewer/net/ppsx.pt.md new file mode 100644 index 00000000..8dc8230f --- /dev/null +++ b/content/viewer/net/ppsx.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPSX API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir PPSX em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos PPSX para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos PPSX em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo PPSX em C#" + content: | + Com GroupDocs.Viewer você pode renderizar PPSX para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo PPSX com caminho completo. + 3. Defina opções para renderizar o arquivo PPSX em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada PPSX + string filePath = "input.ppsx"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo PPSX em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "PPSX" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppsx.ru.md b/content/viewer/net/ppsx.ru.md new file mode 100644 index 00000000..ff00f65b --- /dev/null +++ b/content/viewer/net/ppsx.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPSX API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения PPSX в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "PPSX средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла PPSX в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла PPSX в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать PPSX в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл PPSX с полным путем. + 3. Установите параметры для преобразования файла PPSX в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл PPSX + string filePath = "input.ppsx"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл PPSX в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "PPSX" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppsx.th.md b/content/viewer/net/ppsx.th.md new file mode 100644 index 00000000..060e6aab --- /dev/null +++ b/content/viewer/net/ppsx.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPSX Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง PPSX ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ PPSX สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ PPSX ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ PPSX ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล PPSX เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ PPSX ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ PPSX เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต PPSX + string filePath = "input.ppsx"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ PPSX เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "PPSX" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppsx.uk.md b/content/viewer/net/ppsx.uk.md new file mode 100644 index 00000000..674266a3 --- /dev/null +++ b/content/viewer/net/ppsx.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPSX Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення PPSX у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів PPSX для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу PPSX у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу PPSX у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити PPSX у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл PPSX із повним шляхом. + 3. Встановіть параметри для перетворення файлу PPSX у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл PPSX + string filePath = "input.ppsx"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл PPSX у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "PPSX" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppsx.vi.md b/content/viewer/net/ppsx.vi.md new file mode 100644 index 00000000..02116f4e --- /dev/null +++ b/content/viewer/net/ppsx.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET PPSX - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị PPSX trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp PPSX dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp PPSX trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp PPSX trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị PPSX thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp PPSX với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp PPSX thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp PPSX đầu vào + string filePath = "input.ppsx"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp PPSX thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "PPSX" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppsx.zh.md b/content/viewer/net/ppsx.zh.md new file mode 100644 index 00000000..9ee79499 --- /dev/null +++ b/content/viewer/net/ppsx.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPSX Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PPSX。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 PPSX 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PPSX 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 PPSX 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 PPSX 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 PPSX 文件。 + 3. 设置选项以将 PPSX 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 PPSX 文件 + string filePath = "input.ppsx"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 PPSX 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "PPSX" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppt.de.md b/content/viewer/net/ppt.de.md new file mode 100644 index 00000000..39f0d6f6 --- /dev/null +++ b/content/viewer/net/ppt.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPT Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PPT in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "PPT Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PPT-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der PPT-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie PPT in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei PPT mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei PPT im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei PPT ein + string filePath = "input.ppt"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei PPT mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "PPT" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppt.en.md b/content/viewer/net/ppt.en.md new file mode 100644 index 00000000..eb1ecb75 --- /dev/null +++ b/content/viewer/net/ppt.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPT Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display PPT in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "PPT file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display PPT file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render PPT file in C#" + content: | + With GroupDocs.Viewer you can render PPT to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the PPT file with full path. + 3. Set options to render PPT file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input PPT file + string filePath = "input.ppt"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render PPT file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "PPT" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppt.es.md b/content/viewer/net/ppt.es.md new file mode 100644 index 00000000..d0fa9e09 --- /dev/null +++ b/content/viewer/net/ppt.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPT API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar PPT en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "PPT visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos PPT en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo PPT en C#" + content: | + Con GroupDocs.Viewer puede renderizar PPT a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo PPT con la ruta completa. + 3. Configure opciones para representar el archivo PPT en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada PPT + string filePath = "input.ppt"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo PPT a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "PPT" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppt.fa.md b/content/viewer/net/ppt.fa.md new file mode 100644 index 00000000..ede8cc90 --- /dev/null +++ b/content/viewer/net/ppt.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPT بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش PPT در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل PPT برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل PPT در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل PPT در C#" + content: | + با GroupDocs.Viewer می‌توانید PPT را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل PPT را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل PPT در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی PPT را تنظیم کنید + string filePath = "input.ppt"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل PPT را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "PPT" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppt.fr.md b/content/viewer/net/ppt.fr.md new file mode 100644 index 00000000..31338855 --- /dev/null +++ b/content/viewer/net/ppt.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET PPT - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher PPT dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "PPT visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier PPT dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier PPT dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer PPT au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier PPT avec le chemin complet. + 3. Définissez les options pour restituer le fichier PPT au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée PPT + string filePath = "input.ppt"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier PPT au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "PPT" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppt.id.md b/content/viewer/net/ppt.id.md new file mode 100644 index 00000000..f97f1f6d --- /dev/null +++ b/content/viewer/net/ppt.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPT Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan PPT di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "PPT penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file PPT dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file PPT di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender PPT ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file PPT dengan path lengkap. + 3. Tetapkan opsi untuk merender file PPT ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan PPT + string filePath = "input.ppt"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file PPT ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "PPT" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppt.it.md b/content/viewer/net/ppt.it.md new file mode 100644 index 00000000..d5e86133 --- /dev/null +++ b/content/viewer/net/ppt.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET PPT: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare PPT in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file PPT per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file PPT in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file PPT in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di PPT in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file PPT con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file PPT nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input PPT + string filePath = "input.ppt"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file PPT in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "PPT" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppt.ja.md b/content/viewer/net/ppt.ja.md new file mode 100644 index 00000000..9a35d360 --- /dev/null +++ b/content/viewer/net/ppt.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPT ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PPT を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の PPT ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PPT ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で PPT ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で PPT を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、PPT ファイルをフルパスでロードします。 + 3. PPT ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 PPT ファイルを設定する + string filePath = "input.ppt"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた PPT ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "PPT" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppt.ko.md b/content/viewer/net/ppt.ko.md new file mode 100644 index 00000000..98ca5573 --- /dev/null +++ b/content/viewer/net/ppt.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPT 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PPT을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 PPT 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PPT 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 PPT 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 PPT을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 PPT 파일을 로드합니다. + 3. PPT 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 PPT 파일 설정 + string filePath = "input.ppt"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 PPT 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "PPT" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppt.pt.md b/content/viewer/net/ppt.pt.md new file mode 100644 index 00000000..31068c05 --- /dev/null +++ b/content/viewer/net/ppt.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPT API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir PPT em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos PPT para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos PPT em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo PPT em C#" + content: | + Com GroupDocs.Viewer você pode renderizar PPT para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo PPT com caminho completo. + 3. Defina opções para renderizar o arquivo PPT em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada PPT + string filePath = "input.ppt"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo PPT em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "PPT" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppt.ru.md b/content/viewer/net/ppt.ru.md new file mode 100644 index 00000000..c28723c1 --- /dev/null +++ b/content/viewer/net/ppt.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPT API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения PPT в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "PPT средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла PPT в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла PPT в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать PPT в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл PPT с полным путем. + 3. Установите параметры для преобразования файла PPT в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл PPT + string filePath = "input.ppt"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл PPT в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "PPT" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppt.th.md b/content/viewer/net/ppt.th.md new file mode 100644 index 00000000..e62e12db --- /dev/null +++ b/content/viewer/net/ppt.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPT Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง PPT ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ PPT สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ PPT ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ PPT ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล PPT เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ PPT ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ PPT เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต PPT + string filePath = "input.ppt"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ PPT เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "PPT" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppt.uk.md b/content/viewer/net/ppt.uk.md new file mode 100644 index 00000000..62705460 --- /dev/null +++ b/content/viewer/net/ppt.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPT Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення PPT у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів PPT для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу PPT у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу PPT у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити PPT у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл PPT із повним шляхом. + 3. Встановіть параметри для перетворення файлу PPT у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл PPT + string filePath = "input.ppt"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл PPT у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "PPT" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppt.vi.md b/content/viewer/net/ppt.vi.md new file mode 100644 index 00000000..94674a97 --- /dev/null +++ b/content/viewer/net/ppt.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET PPT - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị PPT trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp PPT dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp PPT trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp PPT trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị PPT thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp PPT với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp PPT thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp PPT đầu vào + string filePath = "input.ppt"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp PPT thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "PPT" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ppt.zh.md b/content/viewer/net/ppt.zh.md new file mode 100644 index 00000000..cf9d5f62 --- /dev/null +++ b/content/viewer/net/ppt.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPT Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PPT。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 PPT 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PPT 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 PPT 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 PPT 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 PPT 文件。 + 3. 设置选项以将 PPT 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 PPT 文件 + string filePath = "input.ppt"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 PPT 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "PPT" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pptm.de.md b/content/viewer/net/pptm.de.md new file mode 100644 index 00000000..aa276879 --- /dev/null +++ b/content/viewer/net/pptm.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPTM Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PPTM in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "PPTM Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PPTM-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der PPTM-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie PPTM in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei PPTM mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei PPTM im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei PPTM ein + string filePath = "input.pptm"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei PPTM mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "PPTM" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pptm.en.md b/content/viewer/net/pptm.en.md new file mode 100644 index 00000000..2fa22767 --- /dev/null +++ b/content/viewer/net/pptm.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPTM Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display PPTM in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "PPTM file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display PPTM file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render PPTM file in C#" + content: | + With GroupDocs.Viewer you can render PPTM to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the PPTM file with full path. + 3. Set options to render PPTM file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input PPTM file + string filePath = "input.pptm"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render PPTM file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "PPTM" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pptm.es.md b/content/viewer/net/pptm.es.md new file mode 100644 index 00000000..7a55a41d --- /dev/null +++ b/content/viewer/net/pptm.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPTM API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar PPTM en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "PPTM visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos PPTM en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo PPTM en C#" + content: | + Con GroupDocs.Viewer puede renderizar PPTM a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo PPTM con la ruta completa. + 3. Configure opciones para representar el archivo PPTM en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada PPTM + string filePath = "input.pptm"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo PPTM a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "PPTM" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pptm.fa.md b/content/viewer/net/pptm.fa.md new file mode 100644 index 00000000..eb805eeb --- /dev/null +++ b/content/viewer/net/pptm.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPTM بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش PPTM در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل PPTM برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل PPTM در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل PPTM در C#" + content: | + با GroupDocs.Viewer می‌توانید PPTM را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل PPTM را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل PPTM در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی PPTM را تنظیم کنید + string filePath = "input.pptm"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل PPTM را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "PPTM" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pptm.fr.md b/content/viewer/net/pptm.fr.md new file mode 100644 index 00000000..192a2b1a --- /dev/null +++ b/content/viewer/net/pptm.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET PPTM - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher PPTM dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "PPTM visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier PPTM dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier PPTM dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer PPTM au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier PPTM avec le chemin complet. + 3. Définissez les options pour restituer le fichier PPTM au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée PPTM + string filePath = "input.pptm"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier PPTM au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "PPTM" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pptm.id.md b/content/viewer/net/pptm.id.md new file mode 100644 index 00000000..7502a9ef --- /dev/null +++ b/content/viewer/net/pptm.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPTM Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan PPTM di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "PPTM penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file PPTM dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file PPTM di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender PPTM ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file PPTM dengan path lengkap. + 3. Tetapkan opsi untuk merender file PPTM ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan PPTM + string filePath = "input.pptm"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file PPTM ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "PPTM" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pptm.it.md b/content/viewer/net/pptm.it.md new file mode 100644 index 00000000..1ee4b271 --- /dev/null +++ b/content/viewer/net/pptm.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET PPTM: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare PPTM in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file PPTM per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file PPTM in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file PPTM in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di PPTM in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file PPTM con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file PPTM nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input PPTM + string filePath = "input.pptm"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file PPTM in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "PPTM" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pptm.ja.md b/content/viewer/net/pptm.ja.md new file mode 100644 index 00000000..ad92197e --- /dev/null +++ b/content/viewer/net/pptm.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPTM ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PPTM を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の PPTM ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PPTM ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で PPTM ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で PPTM を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、PPTM ファイルをフルパスでロードします。 + 3. PPTM ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 PPTM ファイルを設定する + string filePath = "input.pptm"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた PPTM ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "PPTM" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pptm.ko.md b/content/viewer/net/pptm.ko.md new file mode 100644 index 00000000..bb919208 --- /dev/null +++ b/content/viewer/net/pptm.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPTM 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PPTM을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 PPTM 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PPTM 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 PPTM 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 PPTM을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 PPTM 파일을 로드합니다. + 3. PPTM 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 PPTM 파일 설정 + string filePath = "input.pptm"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 PPTM 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "PPTM" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pptm.pt.md b/content/viewer/net/pptm.pt.md new file mode 100644 index 00000000..ef0f3b44 --- /dev/null +++ b/content/viewer/net/pptm.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPTM API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir PPTM em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos PPTM para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos PPTM em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo PPTM em C#" + content: | + Com GroupDocs.Viewer você pode renderizar PPTM para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo PPTM com caminho completo. + 3. Defina opções para renderizar o arquivo PPTM em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada PPTM + string filePath = "input.pptm"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo PPTM em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "PPTM" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pptm.ru.md b/content/viewer/net/pptm.ru.md new file mode 100644 index 00000000..3a1de6b0 --- /dev/null +++ b/content/viewer/net/pptm.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPTM API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения PPTM в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "PPTM средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла PPTM в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла PPTM в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать PPTM в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл PPTM с полным путем. + 3. Установите параметры для преобразования файла PPTM в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл PPTM + string filePath = "input.pptm"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл PPTM в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "PPTM" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pptm.th.md b/content/viewer/net/pptm.th.md new file mode 100644 index 00000000..3d892685 --- /dev/null +++ b/content/viewer/net/pptm.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPTM Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง PPTM ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ PPTM สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ PPTM ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ PPTM ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล PPTM เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ PPTM ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ PPTM เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต PPTM + string filePath = "input.pptm"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ PPTM เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "PPTM" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pptm.uk.md b/content/viewer/net/pptm.uk.md new file mode 100644 index 00000000..03d0ffaa --- /dev/null +++ b/content/viewer/net/pptm.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPTM Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення PPTM у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів PPTM для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу PPTM у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу PPTM у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити PPTM у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл PPTM із повним шляхом. + 3. Встановіть параметри для перетворення файлу PPTM у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл PPTM + string filePath = "input.pptm"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл PPTM у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "PPTM" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pptm.vi.md b/content/viewer/net/pptm.vi.md new file mode 100644 index 00000000..6be0e4cb --- /dev/null +++ b/content/viewer/net/pptm.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET PPTM - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị PPTM trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp PPTM dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp PPTM trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp PPTM trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị PPTM thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp PPTM với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp PPTM thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp PPTM đầu vào + string filePath = "input.pptm"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp PPTM thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "PPTM" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pptm.zh.md b/content/viewer/net/pptm.zh.md new file mode 100644 index 00000000..ed986798 --- /dev/null +++ b/content/viewer/net/pptm.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPTM Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PPTM。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 PPTM 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PPTM 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 PPTM 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 PPTM 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 PPTM 文件。 + 3. 设置选项以将 PPTM 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 PPTM 文件 + string filePath = "input.pptm"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 PPTM 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "PPTM" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pptx.de.md b/content/viewer/net/pptx.de.md new file mode 100644 index 00000000..8734adfe --- /dev/null +++ b/content/viewer/net/pptx.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPTX Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PPTX in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "PPTX Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PPTX-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der PPTX-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie PPTX in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei PPTX mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei PPTX im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei PPTX ein + string filePath = "input.pptx"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei PPTX mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "PPTX" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pptx.en.md b/content/viewer/net/pptx.en.md new file mode 100644 index 00000000..f32c849c --- /dev/null +++ b/content/viewer/net/pptx.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPTX Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display PPTX in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "PPTX file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display PPTX file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render PPTX file in C#" + content: | + With GroupDocs.Viewer you can render PPTX to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the PPTX file with full path. + 3. Set options to render PPTX file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input PPTX file + string filePath = "input.pptx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render PPTX file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "PPTX" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pptx.es.md b/content/viewer/net/pptx.es.md new file mode 100644 index 00000000..eb448770 --- /dev/null +++ b/content/viewer/net/pptx.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPTX API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar PPTX en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "PPTX visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos PPTX en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo PPTX en C#" + content: | + Con GroupDocs.Viewer puede renderizar PPTX a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo PPTX con la ruta completa. + 3. Configure opciones para representar el archivo PPTX en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada PPTX + string filePath = "input.pptx"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo PPTX a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "PPTX" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pptx.fa.md b/content/viewer/net/pptx.fa.md new file mode 100644 index 00000000..72aee904 --- /dev/null +++ b/content/viewer/net/pptx.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPTX بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش PPTX در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل PPTX برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل PPTX در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل PPTX در C#" + content: | + با GroupDocs.Viewer می‌توانید PPTX را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل PPTX را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل PPTX در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی PPTX را تنظیم کنید + string filePath = "input.pptx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل PPTX را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "PPTX" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pptx.fr.md b/content/viewer/net/pptx.fr.md new file mode 100644 index 00000000..ae24c376 --- /dev/null +++ b/content/viewer/net/pptx.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET PPTX - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher PPTX dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "PPTX visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier PPTX dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier PPTX dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer PPTX au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier PPTX avec le chemin complet. + 3. Définissez les options pour restituer le fichier PPTX au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée PPTX + string filePath = "input.pptx"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier PPTX au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "PPTX" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pptx.id.md b/content/viewer/net/pptx.id.md new file mode 100644 index 00000000..e597b152 --- /dev/null +++ b/content/viewer/net/pptx.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPTX Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan PPTX di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "PPTX penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file PPTX dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file PPTX di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender PPTX ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file PPTX dengan path lengkap. + 3. Tetapkan opsi untuk merender file PPTX ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan PPTX + string filePath = "input.pptx"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file PPTX ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "PPTX" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pptx.it.md b/content/viewer/net/pptx.it.md new file mode 100644 index 00000000..c29abddf --- /dev/null +++ b/content/viewer/net/pptx.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET PPTX: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare PPTX in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file PPTX per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file PPTX in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file PPTX in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di PPTX in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file PPTX con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file PPTX nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input PPTX + string filePath = "input.pptx"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file PPTX in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "PPTX" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pptx.ja.md b/content/viewer/net/pptx.ja.md new file mode 100644 index 00000000..577455cb --- /dev/null +++ b/content/viewer/net/pptx.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPTX ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PPTX を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の PPTX ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PPTX ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で PPTX ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で PPTX を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、PPTX ファイルをフルパスでロードします。 + 3. PPTX ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 PPTX ファイルを設定する + string filePath = "input.pptx"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた PPTX ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "PPTX" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pptx.ko.md b/content/viewer/net/pptx.ko.md new file mode 100644 index 00000000..29c1bb33 --- /dev/null +++ b/content/viewer/net/pptx.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPTX 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PPTX을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 PPTX 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PPTX 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 PPTX 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 PPTX을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 PPTX 파일을 로드합니다. + 3. PPTX 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 PPTX 파일 설정 + string filePath = "input.pptx"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 PPTX 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "PPTX" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pptx.pt.md b/content/viewer/net/pptx.pt.md new file mode 100644 index 00000000..b871009a --- /dev/null +++ b/content/viewer/net/pptx.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPTX API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir PPTX em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos PPTX para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos PPTX em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo PPTX em C#" + content: | + Com GroupDocs.Viewer você pode renderizar PPTX para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo PPTX com caminho completo. + 3. Defina opções para renderizar o arquivo PPTX em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada PPTX + string filePath = "input.pptx"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo PPTX em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "PPTX" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pptx.ru.md b/content/viewer/net/pptx.ru.md new file mode 100644 index 00000000..b8297b81 --- /dev/null +++ b/content/viewer/net/pptx.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPTX API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения PPTX в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "PPTX средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла PPTX в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла PPTX в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать PPTX в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл PPTX с полным путем. + 3. Установите параметры для преобразования файла PPTX в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл PPTX + string filePath = "input.pptx"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл PPTX в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "PPTX" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pptx.th.md b/content/viewer/net/pptx.th.md new file mode 100644 index 00000000..dc9c2bbc --- /dev/null +++ b/content/viewer/net/pptx.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPTX Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง PPTX ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ PPTX สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ PPTX ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ PPTX ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล PPTX เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ PPTX ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ PPTX เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต PPTX + string filePath = "input.pptx"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ PPTX เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "PPTX" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pptx.uk.md b/content/viewer/net/pptx.uk.md new file mode 100644 index 00000000..8dfeaf53 --- /dev/null +++ b/content/viewer/net/pptx.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPTX Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення PPTX у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів PPTX для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу PPTX у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу PPTX у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити PPTX у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл PPTX із повним шляхом. + 3. Встановіть параметри для перетворення файлу PPTX у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл PPTX + string filePath = "input.pptx"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл PPTX у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "PPTX" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pptx.vi.md b/content/viewer/net/pptx.vi.md new file mode 100644 index 00000000..2f659f1b --- /dev/null +++ b/content/viewer/net/pptx.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET PPTX - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị PPTX trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp PPTX dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp PPTX trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp PPTX trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị PPTX thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp PPTX với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp PPTX thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp PPTX đầu vào + string filePath = "input.pptx"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp PPTX thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "PPTX" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pptx.zh.md b/content/viewer/net/pptx.zh.md new file mode 100644 index 00000000..33f0a804 --- /dev/null +++ b/content/viewer/net/pptx.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PPTX Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PPTX。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 PPTX 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PPTX 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 PPTX 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 PPTX 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 PPTX 文件。 + 3. 设置选项以将 PPTX 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 PPTX 文件 + string filePath = "input.pptx"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 PPTX 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "PPTX" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/presentation.de.md b/content/viewer/net/presentation.de.md new file mode 100644 index 00000000..f234344c --- /dev/null +++ b/content/viewer/net/presentation.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Presentation Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von Presentation in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "Presentation Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von Presentation-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der Presentation-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie Presentation in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei Presentation mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei Presentation im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei Presentation ein + string filePath = "input.pptx"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei Presentation mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "Presentation" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/presentation.en.md b/content/viewer/net/presentation.en.md new file mode 100644 index 00000000..1c7db9c5 --- /dev/null +++ b/content/viewer/net/presentation.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Presentation Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display Presentation in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "Presentation file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display Presentation file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render Presentation file in C#" + content: | + With GroupDocs.Viewer you can render Presentation to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the Presentation file with full path. + 3. Set options to render Presentation file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input Presentation file + string filePath = "input.pptx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render Presentation file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "Presentation" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/presentation.es.md b/content/viewer/net/presentation.es.md new file mode 100644 index 00000000..15b7d3c4 --- /dev/null +++ b/content/viewer/net/presentation.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Presentation API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar Presentation en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "Presentation visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos Presentation en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo Presentation en C#" + content: | + Con GroupDocs.Viewer puede renderizar Presentation a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo Presentation con la ruta completa. + 3. Configure opciones para representar el archivo Presentation en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada Presentation + string filePath = "input.pptx"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo Presentation a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "Presentation" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/presentation.fa.md b/content/viewer/net/presentation.fa.md new file mode 100644 index 00000000..7cd95662 --- /dev/null +++ b/content/viewer/net/presentation.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Presentation بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش Presentation در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل Presentation برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل Presentation در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل Presentation در C#" + content: | + با GroupDocs.Viewer می‌توانید Presentation را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل Presentation را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل Presentation در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی Presentation را تنظیم کنید + string filePath = "input.pptx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل Presentation را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "Presentation" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/presentation.fr.md b/content/viewer/net/presentation.fr.md new file mode 100644 index 00000000..0bb6bcb0 --- /dev/null +++ b/content/viewer/net/presentation.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET Presentation - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher Presentation dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "Presentation visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier Presentation dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier Presentation dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer Presentation au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier Presentation avec le chemin complet. + 3. Définissez les options pour restituer le fichier Presentation au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée Presentation + string filePath = "input.pptx"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier Presentation au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "Presentation" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/presentation.id.md b/content/viewer/net/presentation.id.md new file mode 100644 index 00000000..ae006428 --- /dev/null +++ b/content/viewer/net/presentation.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Presentation Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan Presentation di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Presentation penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file Presentation dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file Presentation di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender Presentation ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file Presentation dengan path lengkap. + 3. Tetapkan opsi untuk merender file Presentation ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan Presentation + string filePath = "input.pptx"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file Presentation ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "Presentation" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/presentation.it.md b/content/viewer/net/presentation.it.md new file mode 100644 index 00000000..12842891 --- /dev/null +++ b/content/viewer/net/presentation.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET Presentation: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare Presentation in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file Presentation per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file Presentation in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file Presentation in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di Presentation in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file Presentation con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file Presentation nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input Presentation + string filePath = "input.pptx"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file Presentation in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "Presentation" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/presentation.ja.md b/content/viewer/net/presentation.ja.md new file mode 100644 index 00000000..150e5795 --- /dev/null +++ b/content/viewer/net/presentation.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Presentation ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで Presentation を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の Presentation ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで Presentation ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で Presentation ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で Presentation を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、Presentation ファイルをフルパスでロードします。 + 3. Presentation ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 Presentation ファイルを設定する + string filePath = "input.pptx"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた Presentation ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "Presentation" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/presentation.ko.md b/content/viewer/net/presentation.ko.md new file mode 100644 index 00000000..fcb367d0 --- /dev/null +++ b/content/viewer/net/presentation.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Presentation 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 Presentation을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 Presentation 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 Presentation 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 Presentation 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 Presentation을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 Presentation 파일을 로드합니다. + 3. Presentation 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 Presentation 파일 설정 + string filePath = "input.pptx"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 Presentation 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "Presentation" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/presentation.pt.md b/content/viewer/net/presentation.pt.md new file mode 100644 index 00000000..dd7d8662 --- /dev/null +++ b/content/viewer/net/presentation.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Presentation API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir Presentation em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos Presentation para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos Presentation em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo Presentation em C#" + content: | + Com GroupDocs.Viewer você pode renderizar Presentation para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo Presentation com caminho completo. + 3. Defina opções para renderizar o arquivo Presentation em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada Presentation + string filePath = "input.pptx"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo Presentation em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "Presentation" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/presentation.ru.md b/content/viewer/net/presentation.ru.md new file mode 100644 index 00000000..3bb1ac53 --- /dev/null +++ b/content/viewer/net/presentation.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Presentation API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения Presentation в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "Presentation средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла Presentation в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла Presentation в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать Presentation в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл Presentation с полным путем. + 3. Установите параметры для преобразования файла Presentation в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл Presentation + string filePath = "input.pptx"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл Presentation в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "Presentation" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/presentation.th.md b/content/viewer/net/presentation.th.md new file mode 100644 index 00000000..35307099 --- /dev/null +++ b/content/viewer/net/presentation.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Presentation Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง Presentation ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ Presentation สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ Presentation ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ Presentation ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล Presentation เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ Presentation ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ Presentation เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต Presentation + string filePath = "input.pptx"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ Presentation เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "Presentation" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/presentation.uk.md b/content/viewer/net/presentation.uk.md new file mode 100644 index 00000000..46f10c2a --- /dev/null +++ b/content/viewer/net/presentation.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Presentation Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення Presentation у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів Presentation для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу Presentation у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу Presentation у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити Presentation у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл Presentation із повним шляхом. + 3. Встановіть параметри для перетворення файлу Presentation у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл Presentation + string filePath = "input.pptx"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл Presentation у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "Presentation" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/presentation.vi.md b/content/viewer/net/presentation.vi.md new file mode 100644 index 00000000..8bb79360 --- /dev/null +++ b/content/viewer/net/presentation.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET Presentation - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị Presentation trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp Presentation dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp Presentation trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp Presentation trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị Presentation thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp Presentation với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp Presentation thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp Presentation đầu vào + string filePath = "input.pptx"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp Presentation thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "Presentation" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/presentation.zh.md b/content/viewer/net/presentation.zh.md new file mode 100644 index 00000000..3be8cca7 --- /dev/null +++ b/content/viewer/net/presentation.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Presentation Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 Presentation。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 Presentation 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 Presentation 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 Presentation 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 Presentation 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 Presentation 文件。 + 3. 设置选项以将 Presentation 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 Presentation 文件 + string filePath = "input.pptx"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 Presentation 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "Presentation" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/project.de.md b/content/viewer/net/project.de.md new file mode 100644 index 00000000..9ad8caec --- /dev/null +++ b/content/viewer/net/project.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Project Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von Project in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "Project Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von Project-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der Project-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie Project in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei Project mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei Project im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei Project ein + string filePath = "input.mpp"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei Project mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "Project" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/project.en.md b/content/viewer/net/project.en.md new file mode 100644 index 00000000..f320f44e --- /dev/null +++ b/content/viewer/net/project.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Project Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display Project in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "Project file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display Project file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render Project file in C#" + content: | + With GroupDocs.Viewer you can render Project to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the Project file with full path. + 3. Set options to render Project file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input Project file + string filePath = "input.mpp"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render Project file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "Project" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/project.es.md b/content/viewer/net/project.es.md new file mode 100644 index 00000000..7368a085 --- /dev/null +++ b/content/viewer/net/project.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Project API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar Project en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "Project visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos Project en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo Project en C#" + content: | + Con GroupDocs.Viewer puede renderizar Project a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo Project con la ruta completa. + 3. Configure opciones para representar el archivo Project en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada Project + string filePath = "input.mpp"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo Project a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "Project" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/project.fa.md b/content/viewer/net/project.fa.md new file mode 100644 index 00000000..d099f3cb --- /dev/null +++ b/content/viewer/net/project.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Project بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش Project در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل Project برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل Project در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل Project در C#" + content: | + با GroupDocs.Viewer می‌توانید Project را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل Project را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل Project در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی Project را تنظیم کنید + string filePath = "input.mpp"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل Project را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "Project" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/project.fr.md b/content/viewer/net/project.fr.md new file mode 100644 index 00000000..5e50a755 --- /dev/null +++ b/content/viewer/net/project.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET Project - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher Project dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "Project visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier Project dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier Project dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer Project au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier Project avec le chemin complet. + 3. Définissez les options pour restituer le fichier Project au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée Project + string filePath = "input.mpp"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier Project au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "Project" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/project.id.md b/content/viewer/net/project.id.md new file mode 100644 index 00000000..200b0e23 --- /dev/null +++ b/content/viewer/net/project.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Project Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan Project di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Project penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file Project dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file Project di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender Project ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file Project dengan path lengkap. + 3. Tetapkan opsi untuk merender file Project ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan Project + string filePath = "input.mpp"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file Project ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "Project" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/project.it.md b/content/viewer/net/project.it.md new file mode 100644 index 00000000..9b3d64ea --- /dev/null +++ b/content/viewer/net/project.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET Project: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare Project in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file Project per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file Project in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file Project in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di Project in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file Project con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file Project nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input Project + string filePath = "input.mpp"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file Project in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "Project" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/project.ja.md b/content/viewer/net/project.ja.md new file mode 100644 index 00000000..b9a0bb8d --- /dev/null +++ b/content/viewer/net/project.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Project ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで Project を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の Project ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで Project ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で Project ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で Project を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、Project ファイルをフルパスでロードします。 + 3. Project ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 Project ファイルを設定する + string filePath = "input.mpp"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた Project ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "Project" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/project.ko.md b/content/viewer/net/project.ko.md new file mode 100644 index 00000000..ca5ba28b --- /dev/null +++ b/content/viewer/net/project.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Project 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 Project을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 Project 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 Project 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 Project 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 Project을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 Project 파일을 로드합니다. + 3. Project 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 Project 파일 설정 + string filePath = "input.mpp"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 Project 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "Project" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/project.pt.md b/content/viewer/net/project.pt.md new file mode 100644 index 00000000..b534c789 --- /dev/null +++ b/content/viewer/net/project.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Project API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir Project em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos Project para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos Project em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo Project em C#" + content: | + Com GroupDocs.Viewer você pode renderizar Project para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo Project com caminho completo. + 3. Defina opções para renderizar o arquivo Project em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada Project + string filePath = "input.mpp"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo Project em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "Project" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/project.ru.md b/content/viewer/net/project.ru.md new file mode 100644 index 00000000..a8521542 --- /dev/null +++ b/content/viewer/net/project.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Project API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения Project в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "Project средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла Project в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла Project в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать Project в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл Project с полным путем. + 3. Установите параметры для преобразования файла Project в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл Project + string filePath = "input.mpp"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл Project в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "Project" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/project.th.md b/content/viewer/net/project.th.md new file mode 100644 index 00000000..b35f90e3 --- /dev/null +++ b/content/viewer/net/project.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Project Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง Project ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ Project สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ Project ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ Project ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล Project เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ Project ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ Project เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต Project + string filePath = "input.mpp"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ Project เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "Project" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/project.uk.md b/content/viewer/net/project.uk.md new file mode 100644 index 00000000..6da24da7 --- /dev/null +++ b/content/viewer/net/project.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Project Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення Project у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів Project для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу Project у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу Project у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити Project у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл Project із повним шляхом. + 3. Встановіть параметри для перетворення файлу Project у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл Project + string filePath = "input.mpp"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл Project у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "Project" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/project.vi.md b/content/viewer/net/project.vi.md new file mode 100644 index 00000000..ec63c412 --- /dev/null +++ b/content/viewer/net/project.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET Project - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị Project trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp Project dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp Project trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp Project trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị Project thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp Project với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp Project thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp Project đầu vào + string filePath = "input.mpp"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp Project thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "Project" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/project.zh.md b/content/viewer/net/project.zh.md new file mode 100644 index 00000000..797220c7 --- /dev/null +++ b/content/viewer/net/project.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Project Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 Project。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 Project 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 Project 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 Project 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 Project 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 Project 文件。 + 3. 设置选项以将 Project 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 Project 文件 + string filePath = "input.mpp"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 Project 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "Project" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/properties.de.md b/content/viewer/net/properties.de.md new file mode 100644 index 00000000..ad9bc30b --- /dev/null +++ b/content/viewer/net/properties.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PROPERTIES Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PROPERTIES in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "PROPERTIES Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PROPERTIES-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der PROPERTIES-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie PROPERTIES in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei PROPERTIES mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei PROPERTIES im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei PROPERTIES ein + string filePath = "input.properties"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei PROPERTIES mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "PROPERTIES" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/properties.en.md b/content/viewer/net/properties.en.md new file mode 100644 index 00000000..91bc2f8b --- /dev/null +++ b/content/viewer/net/properties.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PROPERTIES Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display PROPERTIES in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "PROPERTIES file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display PROPERTIES file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render PROPERTIES file in C#" + content: | + With GroupDocs.Viewer you can render PROPERTIES to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the PROPERTIES file with full path. + 3. Set options to render PROPERTIES file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input PROPERTIES file + string filePath = "input.properties"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render PROPERTIES file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "PROPERTIES" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/properties.es.md b/content/viewer/net/properties.es.md new file mode 100644 index 00000000..5277bd7f --- /dev/null +++ b/content/viewer/net/properties.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PROPERTIES API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar PROPERTIES en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "PROPERTIES visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos PROPERTIES en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo PROPERTIES en C#" + content: | + Con GroupDocs.Viewer puede renderizar PROPERTIES a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo PROPERTIES con la ruta completa. + 3. Configure opciones para representar el archivo PROPERTIES en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada PROPERTIES + string filePath = "input.properties"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo PROPERTIES a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "PROPERTIES" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/properties.fa.md b/content/viewer/net/properties.fa.md new file mode 100644 index 00000000..ee77cd8e --- /dev/null +++ b/content/viewer/net/properties.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PROPERTIES بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش PROPERTIES در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل PROPERTIES برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل PROPERTIES در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل PROPERTIES در C#" + content: | + با GroupDocs.Viewer می‌توانید PROPERTIES را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل PROPERTIES را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل PROPERTIES در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی PROPERTIES را تنظیم کنید + string filePath = "input.properties"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل PROPERTIES را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "PROPERTIES" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/properties.fr.md b/content/viewer/net/properties.fr.md new file mode 100644 index 00000000..6a48a181 --- /dev/null +++ b/content/viewer/net/properties.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET PROPERTIES - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher PROPERTIES dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "PROPERTIES visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier PROPERTIES dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier PROPERTIES dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer PROPERTIES au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier PROPERTIES avec le chemin complet. + 3. Définissez les options pour restituer le fichier PROPERTIES au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée PROPERTIES + string filePath = "input.properties"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier PROPERTIES au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "PROPERTIES" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/properties.id.md b/content/viewer/net/properties.id.md new file mode 100644 index 00000000..4406ab41 --- /dev/null +++ b/content/viewer/net/properties.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PROPERTIES Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan PROPERTIES di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "PROPERTIES penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file PROPERTIES dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file PROPERTIES di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender PROPERTIES ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file PROPERTIES dengan path lengkap. + 3. Tetapkan opsi untuk merender file PROPERTIES ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan PROPERTIES + string filePath = "input.properties"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file PROPERTIES ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "PROPERTIES" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/properties.it.md b/content/viewer/net/properties.it.md new file mode 100644 index 00000000..80cce4e9 --- /dev/null +++ b/content/viewer/net/properties.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET PROPERTIES: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare PROPERTIES in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file PROPERTIES per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file PROPERTIES in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file PROPERTIES in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di PROPERTIES in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file PROPERTIES con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file PROPERTIES nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input PROPERTIES + string filePath = "input.properties"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file PROPERTIES in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "PROPERTIES" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/properties.ja.md b/content/viewer/net/properties.ja.md new file mode 100644 index 00000000..496e1e1b --- /dev/null +++ b/content/viewer/net/properties.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PROPERTIES ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PROPERTIES を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の PROPERTIES ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PROPERTIES ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で PROPERTIES ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で PROPERTIES を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、PROPERTIES ファイルをフルパスでロードします。 + 3. PROPERTIES ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 PROPERTIES ファイルを設定する + string filePath = "input.properties"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた PROPERTIES ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "PROPERTIES" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/properties.ko.md b/content/viewer/net/properties.ko.md new file mode 100644 index 00000000..a24b33f6 --- /dev/null +++ b/content/viewer/net/properties.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PROPERTIES 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PROPERTIES을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 PROPERTIES 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PROPERTIES 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 PROPERTIES 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 PROPERTIES을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 PROPERTIES 파일을 로드합니다. + 3. PROPERTIES 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 PROPERTIES 파일 설정 + string filePath = "input.properties"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 PROPERTIES 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "PROPERTIES" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/properties.pt.md b/content/viewer/net/properties.pt.md new file mode 100644 index 00000000..234e72b3 --- /dev/null +++ b/content/viewer/net/properties.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PROPERTIES API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir PROPERTIES em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos PROPERTIES para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos PROPERTIES em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo PROPERTIES em C#" + content: | + Com GroupDocs.Viewer você pode renderizar PROPERTIES para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo PROPERTIES com caminho completo. + 3. Defina opções para renderizar o arquivo PROPERTIES em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada PROPERTIES + string filePath = "input.properties"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo PROPERTIES em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "PROPERTIES" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/properties.ru.md b/content/viewer/net/properties.ru.md new file mode 100644 index 00000000..f674050b --- /dev/null +++ b/content/viewer/net/properties.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PROPERTIES API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения PROPERTIES в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "PROPERTIES средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла PROPERTIES в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла PROPERTIES в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать PROPERTIES в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл PROPERTIES с полным путем. + 3. Установите параметры для преобразования файла PROPERTIES в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл PROPERTIES + string filePath = "input.properties"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл PROPERTIES в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "PROPERTIES" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/properties.th.md b/content/viewer/net/properties.th.md new file mode 100644 index 00000000..53233e16 --- /dev/null +++ b/content/viewer/net/properties.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PROPERTIES Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง PROPERTIES ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ PROPERTIES สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ PROPERTIES ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ PROPERTIES ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล PROPERTIES เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ PROPERTIES ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ PROPERTIES เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต PROPERTIES + string filePath = "input.properties"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ PROPERTIES เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "PROPERTIES" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/properties.uk.md b/content/viewer/net/properties.uk.md new file mode 100644 index 00000000..2b05ab92 --- /dev/null +++ b/content/viewer/net/properties.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PROPERTIES Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення PROPERTIES у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів PROPERTIES для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу PROPERTIES у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу PROPERTIES у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити PROPERTIES у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл PROPERTIES із повним шляхом. + 3. Встановіть параметри для перетворення файлу PROPERTIES у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл PROPERTIES + string filePath = "input.properties"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл PROPERTIES у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "PROPERTIES" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/properties.vi.md b/content/viewer/net/properties.vi.md new file mode 100644 index 00000000..50b1a678 --- /dev/null +++ b/content/viewer/net/properties.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET PROPERTIES - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị PROPERTIES trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp PROPERTIES dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp PROPERTIES trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp PROPERTIES trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị PROPERTIES thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp PROPERTIES với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp PROPERTIES thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp PROPERTIES đầu vào + string filePath = "input.properties"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp PROPERTIES thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "PROPERTIES" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/properties.zh.md b/content/viewer/net/properties.zh.md new file mode 100644 index 00000000..d1733055 --- /dev/null +++ b/content/viewer/net/properties.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PROPERTIES Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PROPERTIES。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 PROPERTIES 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PROPERTIES 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 PROPERTIES 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 PROPERTIES 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 PROPERTIES 文件。 + 3. 设置选项以将 PROPERTIES 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 PROPERTIES 文件 + string filePath = "input.properties"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 PROPERTIES 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "PROPERTIES" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ps.de.md b/content/viewer/net/ps.de.md new file mode 100644 index 00000000..6496d215 --- /dev/null +++ b/content/viewer/net/ps.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PS Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PS in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "PS Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PS-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der PS-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie PS in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei PS mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei PS im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei PS ein + string filePath = "input.ps"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei PS mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "PS" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ps.en.md b/content/viewer/net/ps.en.md new file mode 100644 index 00000000..0ee3b175 --- /dev/null +++ b/content/viewer/net/ps.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PS Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display PS in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "PS file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display PS file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render PS file in C#" + content: | + With GroupDocs.Viewer you can render PS to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the PS file with full path. + 3. Set options to render PS file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input PS file + string filePath = "input.ps"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render PS file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "PS" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ps.es.md b/content/viewer/net/ps.es.md new file mode 100644 index 00000000..6d00320b --- /dev/null +++ b/content/viewer/net/ps.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PS API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar PS en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "PS visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos PS en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo PS en C#" + content: | + Con GroupDocs.Viewer puede renderizar PS a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo PS con la ruta completa. + 3. Configure opciones para representar el archivo PS en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada PS + string filePath = "input.ps"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo PS a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "PS" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ps.fa.md b/content/viewer/net/ps.fa.md new file mode 100644 index 00000000..a8624a57 --- /dev/null +++ b/content/viewer/net/ps.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PS بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش PS در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل PS برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل PS در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل PS در C#" + content: | + با GroupDocs.Viewer می‌توانید PS را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل PS را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل PS در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی PS را تنظیم کنید + string filePath = "input.ps"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل PS را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "PS" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ps.fr.md b/content/viewer/net/ps.fr.md new file mode 100644 index 00000000..5bc922d8 --- /dev/null +++ b/content/viewer/net/ps.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET PS - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher PS dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "PS visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier PS dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier PS dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer PS au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier PS avec le chemin complet. + 3. Définissez les options pour restituer le fichier PS au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée PS + string filePath = "input.ps"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier PS au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "PS" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ps.id.md b/content/viewer/net/ps.id.md new file mode 100644 index 00000000..44939f37 --- /dev/null +++ b/content/viewer/net/ps.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PS Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan PS di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "PS penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file PS dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file PS di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender PS ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file PS dengan path lengkap. + 3. Tetapkan opsi untuk merender file PS ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan PS + string filePath = "input.ps"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file PS ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "PS" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ps.it.md b/content/viewer/net/ps.it.md new file mode 100644 index 00000000..6423f08e --- /dev/null +++ b/content/viewer/net/ps.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET PS: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare PS in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file PS per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file PS in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file PS in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di PS in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file PS con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file PS nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input PS + string filePath = "input.ps"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file PS in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "PS" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ps.ja.md b/content/viewer/net/ps.ja.md new file mode 100644 index 00000000..951e6757 --- /dev/null +++ b/content/viewer/net/ps.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PS ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PS を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の PS ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PS ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で PS ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で PS を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、PS ファイルをフルパスでロードします。 + 3. PS ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 PS ファイルを設定する + string filePath = "input.ps"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた PS ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "PS" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ps.ko.md b/content/viewer/net/ps.ko.md new file mode 100644 index 00000000..06027198 --- /dev/null +++ b/content/viewer/net/ps.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PS 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PS을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 PS 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PS 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 PS 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 PS을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 PS 파일을 로드합니다. + 3. PS 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 PS 파일 설정 + string filePath = "input.ps"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 PS 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "PS" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ps.pt.md b/content/viewer/net/ps.pt.md new file mode 100644 index 00000000..15e0a0fd --- /dev/null +++ b/content/viewer/net/ps.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PS API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir PS em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos PS para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos PS em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo PS em C#" + content: | + Com GroupDocs.Viewer você pode renderizar PS para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo PS com caminho completo. + 3. Defina opções para renderizar o arquivo PS em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada PS + string filePath = "input.ps"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo PS em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "PS" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ps.ru.md b/content/viewer/net/ps.ru.md new file mode 100644 index 00000000..6f81cee9 --- /dev/null +++ b/content/viewer/net/ps.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PS API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения PS в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "PS средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла PS в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла PS в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать PS в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл PS с полным путем. + 3. Установите параметры для преобразования файла PS в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл PS + string filePath = "input.ps"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл PS в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "PS" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ps.th.md b/content/viewer/net/ps.th.md new file mode 100644 index 00000000..dd0b2707 --- /dev/null +++ b/content/viewer/net/ps.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PS Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง PS ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ PS สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ PS ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ PS ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล PS เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ PS ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ PS เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต PS + string filePath = "input.ps"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ PS เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "PS" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ps.uk.md b/content/viewer/net/ps.uk.md new file mode 100644 index 00000000..a766ddc9 --- /dev/null +++ b/content/viewer/net/ps.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PS Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення PS у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів PS для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу PS у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу PS у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити PS у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл PS із повним шляхом. + 3. Встановіть параметри для перетворення файлу PS у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл PS + string filePath = "input.ps"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл PS у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "PS" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ps.vi.md b/content/viewer/net/ps.vi.md new file mode 100644 index 00000000..9b0b4db6 --- /dev/null +++ b/content/viewer/net/ps.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET PS - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị PS trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp PS dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp PS trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp PS trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị PS thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp PS với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp PS thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp PS đầu vào + string filePath = "input.ps"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp PS thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "PS" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ps.zh.md b/content/viewer/net/ps.zh.md new file mode 100644 index 00000000..36820a92 --- /dev/null +++ b/content/viewer/net/ps.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PS Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PS。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 PS 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PS 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 PS 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 PS 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 PS 文件。 + 3. 设置选项以将 PS 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 PS 文件 + string filePath = "input.ps"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 PS 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "PS" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ps1.de.md b/content/viewer/net/ps1.de.md new file mode 100644 index 00000000..37f6c0d4 --- /dev/null +++ b/content/viewer/net/ps1.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PS1 Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PS1 in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "PS1 Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PS1-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der PS1-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie PS1 in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei PS1 mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei PS1 im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei PS1 ein + string filePath = "input.ps1"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei PS1 mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "PS1" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ps1.en.md b/content/viewer/net/ps1.en.md new file mode 100644 index 00000000..c0d1c529 --- /dev/null +++ b/content/viewer/net/ps1.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PS1 Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display PS1 in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "PS1 file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display PS1 file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render PS1 file in C#" + content: | + With GroupDocs.Viewer you can render PS1 to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the PS1 file with full path. + 3. Set options to render PS1 file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input PS1 file + string filePath = "input.ps1"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render PS1 file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "PS1" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ps1.es.md b/content/viewer/net/ps1.es.md new file mode 100644 index 00000000..8572e629 --- /dev/null +++ b/content/viewer/net/ps1.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PS1 API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar PS1 en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "PS1 visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos PS1 en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo PS1 en C#" + content: | + Con GroupDocs.Viewer puede renderizar PS1 a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo PS1 con la ruta completa. + 3. Configure opciones para representar el archivo PS1 en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada PS1 + string filePath = "input.ps1"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo PS1 a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "PS1" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ps1.fa.md b/content/viewer/net/ps1.fa.md new file mode 100644 index 00000000..75bfa6be --- /dev/null +++ b/content/viewer/net/ps1.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PS1 بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش PS1 در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل PS1 برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل PS1 در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل PS1 در C#" + content: | + با GroupDocs.Viewer می‌توانید PS1 را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل PS1 را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل PS1 در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی PS1 را تنظیم کنید + string filePath = "input.ps1"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل PS1 را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "PS1" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ps1.fr.md b/content/viewer/net/ps1.fr.md new file mode 100644 index 00000000..4557f432 --- /dev/null +++ b/content/viewer/net/ps1.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET PS1 - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher PS1 dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "PS1 visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier PS1 dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier PS1 dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer PS1 au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier PS1 avec le chemin complet. + 3. Définissez les options pour restituer le fichier PS1 au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée PS1 + string filePath = "input.ps1"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier PS1 au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "PS1" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ps1.id.md b/content/viewer/net/ps1.id.md new file mode 100644 index 00000000..4411ac98 --- /dev/null +++ b/content/viewer/net/ps1.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PS1 Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan PS1 di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "PS1 penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file PS1 dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file PS1 di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender PS1 ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file PS1 dengan path lengkap. + 3. Tetapkan opsi untuk merender file PS1 ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan PS1 + string filePath = "input.ps1"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file PS1 ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "PS1" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ps1.it.md b/content/viewer/net/ps1.it.md new file mode 100644 index 00000000..97c17851 --- /dev/null +++ b/content/viewer/net/ps1.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET PS1: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare PS1 in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file PS1 per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file PS1 in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file PS1 in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di PS1 in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file PS1 con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file PS1 nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input PS1 + string filePath = "input.ps1"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file PS1 in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "PS1" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ps1.ja.md b/content/viewer/net/ps1.ja.md new file mode 100644 index 00000000..2c543821 --- /dev/null +++ b/content/viewer/net/ps1.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PS1 ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PS1 を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の PS1 ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PS1 ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で PS1 ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で PS1 を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、PS1 ファイルをフルパスでロードします。 + 3. PS1 ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 PS1 ファイルを設定する + string filePath = "input.ps1"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた PS1 ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "PS1" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ps1.ko.md b/content/viewer/net/ps1.ko.md new file mode 100644 index 00000000..0dbc51a2 --- /dev/null +++ b/content/viewer/net/ps1.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PS1 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PS1을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 PS1 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PS1 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 PS1 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 PS1을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 PS1 파일을 로드합니다. + 3. PS1 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 PS1 파일 설정 + string filePath = "input.ps1"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 PS1 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "PS1" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ps1.pt.md b/content/viewer/net/ps1.pt.md new file mode 100644 index 00000000..856333eb --- /dev/null +++ b/content/viewer/net/ps1.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PS1 API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir PS1 em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos PS1 para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos PS1 em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo PS1 em C#" + content: | + Com GroupDocs.Viewer você pode renderizar PS1 para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo PS1 com caminho completo. + 3. Defina opções para renderizar o arquivo PS1 em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada PS1 + string filePath = "input.ps1"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo PS1 em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "PS1" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ps1.ru.md b/content/viewer/net/ps1.ru.md new file mode 100644 index 00000000..187a9e3b --- /dev/null +++ b/content/viewer/net/ps1.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PS1 API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения PS1 в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "PS1 средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла PS1 в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла PS1 в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать PS1 в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл PS1 с полным путем. + 3. Установите параметры для преобразования файла PS1 в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл PS1 + string filePath = "input.ps1"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл PS1 в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "PS1" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ps1.th.md b/content/viewer/net/ps1.th.md new file mode 100644 index 00000000..51f0b73e --- /dev/null +++ b/content/viewer/net/ps1.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PS1 Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง PS1 ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ PS1 สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ PS1 ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ PS1 ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล PS1 เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ PS1 ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ PS1 เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต PS1 + string filePath = "input.ps1"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ PS1 เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "PS1" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ps1.uk.md b/content/viewer/net/ps1.uk.md new file mode 100644 index 00000000..4e15e19b --- /dev/null +++ b/content/viewer/net/ps1.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PS1 Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення PS1 у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів PS1 для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу PS1 у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу PS1 у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити PS1 у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл PS1 із повним шляхом. + 3. Встановіть параметри для перетворення файлу PS1 у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл PS1 + string filePath = "input.ps1"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл PS1 у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "PS1" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ps1.vi.md b/content/viewer/net/ps1.vi.md new file mode 100644 index 00000000..d71977bc --- /dev/null +++ b/content/viewer/net/ps1.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET PS1 - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị PS1 trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp PS1 dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp PS1 trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp PS1 trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị PS1 thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp PS1 với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp PS1 thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp PS1 đầu vào + string filePath = "input.ps1"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp PS1 thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "PS1" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/ps1.zh.md b/content/viewer/net/ps1.zh.md new file mode 100644 index 00000000..94d69239 --- /dev/null +++ b/content/viewer/net/ps1.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PS1 Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PS1。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 PS1 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PS1 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 PS1 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 PS1 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 PS1 文件。 + 3. 设置选项以将 PS1 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 PS1 文件 + string filePath = "input.ps1"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 PS1 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "PS1" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psb.de.md b/content/viewer/net/psb.de.md new file mode 100644 index 00000000..ac58c66f --- /dev/null +++ b/content/viewer/net/psb.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSB Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PSB in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "PSB Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PSB-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der PSB-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie PSB in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei PSB mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei PSB im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei PSB ein + string filePath = "input.psb"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei PSB mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "PSB" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psb.en.md b/content/viewer/net/psb.en.md new file mode 100644 index 00000000..049e47d7 --- /dev/null +++ b/content/viewer/net/psb.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSB Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display PSB in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "PSB file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display PSB file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render PSB file in C#" + content: | + With GroupDocs.Viewer you can render PSB to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the PSB file with full path. + 3. Set options to render PSB file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input PSB file + string filePath = "input.psb"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render PSB file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "PSB" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psb.es.md b/content/viewer/net/psb.es.md new file mode 100644 index 00000000..6993043f --- /dev/null +++ b/content/viewer/net/psb.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSB API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar PSB en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "PSB visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos PSB en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo PSB en C#" + content: | + Con GroupDocs.Viewer puede renderizar PSB a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo PSB con la ruta completa. + 3. Configure opciones para representar el archivo PSB en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada PSB + string filePath = "input.psb"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo PSB a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "PSB" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psb.fa.md b/content/viewer/net/psb.fa.md new file mode 100644 index 00000000..84a1e145 --- /dev/null +++ b/content/viewer/net/psb.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSB بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش PSB در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل PSB برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل PSB در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل PSB در C#" + content: | + با GroupDocs.Viewer می‌توانید PSB را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل PSB را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل PSB در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی PSB را تنظیم کنید + string filePath = "input.psb"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل PSB را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "PSB" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psb.fr.md b/content/viewer/net/psb.fr.md new file mode 100644 index 00000000..4c0d5b67 --- /dev/null +++ b/content/viewer/net/psb.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET PSB - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher PSB dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "PSB visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier PSB dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier PSB dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer PSB au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier PSB avec le chemin complet. + 3. Définissez les options pour restituer le fichier PSB au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée PSB + string filePath = "input.psb"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier PSB au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "PSB" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psb.id.md b/content/viewer/net/psb.id.md new file mode 100644 index 00000000..6a3054af --- /dev/null +++ b/content/viewer/net/psb.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSB Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan PSB di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "PSB penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file PSB dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file PSB di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender PSB ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file PSB dengan path lengkap. + 3. Tetapkan opsi untuk merender file PSB ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan PSB + string filePath = "input.psb"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file PSB ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "PSB" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psb.it.md b/content/viewer/net/psb.it.md new file mode 100644 index 00000000..974bd553 --- /dev/null +++ b/content/viewer/net/psb.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET PSB: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare PSB in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file PSB per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file PSB in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file PSB in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di PSB in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file PSB con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file PSB nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input PSB + string filePath = "input.psb"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file PSB in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "PSB" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psb.ja.md b/content/viewer/net/psb.ja.md new file mode 100644 index 00000000..f6bb2c85 --- /dev/null +++ b/content/viewer/net/psb.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSB ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PSB を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の PSB ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PSB ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で PSB ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で PSB を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、PSB ファイルをフルパスでロードします。 + 3. PSB ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 PSB ファイルを設定する + string filePath = "input.psb"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた PSB ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "PSB" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psb.ko.md b/content/viewer/net/psb.ko.md new file mode 100644 index 00000000..5b10b61a --- /dev/null +++ b/content/viewer/net/psb.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSB 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PSB을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 PSB 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PSB 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 PSB 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 PSB을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 PSB 파일을 로드합니다. + 3. PSB 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 PSB 파일 설정 + string filePath = "input.psb"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 PSB 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "PSB" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psb.pt.md b/content/viewer/net/psb.pt.md new file mode 100644 index 00000000..baedd72a --- /dev/null +++ b/content/viewer/net/psb.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSB API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir PSB em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos PSB para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos PSB em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo PSB em C#" + content: | + Com GroupDocs.Viewer você pode renderizar PSB para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo PSB com caminho completo. + 3. Defina opções para renderizar o arquivo PSB em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada PSB + string filePath = "input.psb"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo PSB em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "PSB" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psb.ru.md b/content/viewer/net/psb.ru.md new file mode 100644 index 00000000..6ec4d7e4 --- /dev/null +++ b/content/viewer/net/psb.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSB API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения PSB в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "PSB средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла PSB в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла PSB в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать PSB в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл PSB с полным путем. + 3. Установите параметры для преобразования файла PSB в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл PSB + string filePath = "input.psb"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл PSB в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "PSB" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psb.th.md b/content/viewer/net/psb.th.md new file mode 100644 index 00000000..1f4bffb7 --- /dev/null +++ b/content/viewer/net/psb.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSB Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง PSB ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ PSB สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ PSB ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ PSB ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล PSB เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ PSB ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ PSB เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต PSB + string filePath = "input.psb"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ PSB เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "PSB" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psb.uk.md b/content/viewer/net/psb.uk.md new file mode 100644 index 00000000..8a0d2445 --- /dev/null +++ b/content/viewer/net/psb.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSB Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення PSB у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів PSB для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу PSB у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу PSB у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити PSB у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл PSB із повним шляхом. + 3. Встановіть параметри для перетворення файлу PSB у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл PSB + string filePath = "input.psb"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл PSB у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "PSB" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psb.vi.md b/content/viewer/net/psb.vi.md new file mode 100644 index 00000000..9ec58d6e --- /dev/null +++ b/content/viewer/net/psb.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET PSB - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị PSB trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp PSB dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp PSB trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp PSB trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị PSB thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp PSB với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp PSB thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp PSB đầu vào + string filePath = "input.psb"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp PSB thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "PSB" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psb.zh.md b/content/viewer/net/psb.zh.md new file mode 100644 index 00000000..0eb887fb --- /dev/null +++ b/content/viewer/net/psb.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSB Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PSB。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 PSB 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PSB 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 PSB 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 PSB 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 PSB 文件。 + 3. 设置选项以将 PSB 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 PSB 文件 + string filePath = "input.psb"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 PSB 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "PSB" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psd.de.md b/content/viewer/net/psd.de.md new file mode 100644 index 00000000..3b2400ad --- /dev/null +++ b/content/viewer/net/psd.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSD Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PSD in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "PSD Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PSD-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der PSD-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie PSD in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei PSD mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei PSD im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei PSD ein + string filePath = "input.psd"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei PSD mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "PSD" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psd.en.md b/content/viewer/net/psd.en.md new file mode 100644 index 00000000..30d330fc --- /dev/null +++ b/content/viewer/net/psd.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSD Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display PSD in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "PSD file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display PSD file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render PSD file in C#" + content: | + With GroupDocs.Viewer you can render PSD to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the PSD file with full path. + 3. Set options to render PSD file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input PSD file + string filePath = "input.psd"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render PSD file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "PSD" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psd.es.md b/content/viewer/net/psd.es.md new file mode 100644 index 00000000..62294dd2 --- /dev/null +++ b/content/viewer/net/psd.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSD API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar PSD en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "PSD visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos PSD en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo PSD en C#" + content: | + Con GroupDocs.Viewer puede renderizar PSD a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo PSD con la ruta completa. + 3. Configure opciones para representar el archivo PSD en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada PSD + string filePath = "input.psd"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo PSD a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "PSD" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psd.fa.md b/content/viewer/net/psd.fa.md new file mode 100644 index 00000000..5e479e71 --- /dev/null +++ b/content/viewer/net/psd.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSD بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش PSD در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل PSD برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل PSD در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل PSD در C#" + content: | + با GroupDocs.Viewer می‌توانید PSD را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل PSD را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل PSD در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی PSD را تنظیم کنید + string filePath = "input.psd"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل PSD را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "PSD" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psd.fr.md b/content/viewer/net/psd.fr.md new file mode 100644 index 00000000..958f8a6b --- /dev/null +++ b/content/viewer/net/psd.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET PSD - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher PSD dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "PSD visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier PSD dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier PSD dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer PSD au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier PSD avec le chemin complet. + 3. Définissez les options pour restituer le fichier PSD au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée PSD + string filePath = "input.psd"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier PSD au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "PSD" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psd.id.md b/content/viewer/net/psd.id.md new file mode 100644 index 00000000..6d7611ff --- /dev/null +++ b/content/viewer/net/psd.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSD Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan PSD di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "PSD penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file PSD dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file PSD di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender PSD ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file PSD dengan path lengkap. + 3. Tetapkan opsi untuk merender file PSD ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan PSD + string filePath = "input.psd"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file PSD ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "PSD" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psd.it.md b/content/viewer/net/psd.it.md new file mode 100644 index 00000000..27406c46 --- /dev/null +++ b/content/viewer/net/psd.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET PSD: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare PSD in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file PSD per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file PSD in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file PSD in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di PSD in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file PSD con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file PSD nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input PSD + string filePath = "input.psd"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file PSD in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "PSD" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psd.ja.md b/content/viewer/net/psd.ja.md new file mode 100644 index 00000000..d1826141 --- /dev/null +++ b/content/viewer/net/psd.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSD ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PSD を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の PSD ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PSD ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で PSD ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で PSD を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、PSD ファイルをフルパスでロードします。 + 3. PSD ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 PSD ファイルを設定する + string filePath = "input.psd"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた PSD ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "PSD" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psd.ko.md b/content/viewer/net/psd.ko.md new file mode 100644 index 00000000..5bb45505 --- /dev/null +++ b/content/viewer/net/psd.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSD 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PSD을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 PSD 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PSD 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 PSD 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 PSD을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 PSD 파일을 로드합니다. + 3. PSD 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 PSD 파일 설정 + string filePath = "input.psd"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 PSD 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "PSD" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psd.pt.md b/content/viewer/net/psd.pt.md new file mode 100644 index 00000000..af6df6da --- /dev/null +++ b/content/viewer/net/psd.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSD API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir PSD em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos PSD para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos PSD em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo PSD em C#" + content: | + Com GroupDocs.Viewer você pode renderizar PSD para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo PSD com caminho completo. + 3. Defina opções para renderizar o arquivo PSD em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada PSD + string filePath = "input.psd"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo PSD em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "PSD" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psd.ru.md b/content/viewer/net/psd.ru.md new file mode 100644 index 00000000..a00c63e4 --- /dev/null +++ b/content/viewer/net/psd.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSD API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения PSD в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "PSD средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла PSD в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла PSD в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать PSD в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл PSD с полным путем. + 3. Установите параметры для преобразования файла PSD в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл PSD + string filePath = "input.psd"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл PSD в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "PSD" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psd.th.md b/content/viewer/net/psd.th.md new file mode 100644 index 00000000..a2115818 --- /dev/null +++ b/content/viewer/net/psd.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSD Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง PSD ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ PSD สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ PSD ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ PSD ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล PSD เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ PSD ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ PSD เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต PSD + string filePath = "input.psd"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ PSD เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "PSD" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psd.uk.md b/content/viewer/net/psd.uk.md new file mode 100644 index 00000000..7532db53 --- /dev/null +++ b/content/viewer/net/psd.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSD Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення PSD у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів PSD для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу PSD у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу PSD у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити PSD у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл PSD із повним шляхом. + 3. Встановіть параметри для перетворення файлу PSD у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл PSD + string filePath = "input.psd"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл PSD у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "PSD" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psd.vi.md b/content/viewer/net/psd.vi.md new file mode 100644 index 00000000..a4e57fec --- /dev/null +++ b/content/viewer/net/psd.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET PSD - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị PSD trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp PSD dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp PSD trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp PSD trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị PSD thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp PSD với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp PSD thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp PSD đầu vào + string filePath = "input.psd"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp PSD thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "PSD" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psd.zh.md b/content/viewer/net/psd.zh.md new file mode 100644 index 00000000..75530fb0 --- /dev/null +++ b/content/viewer/net/psd.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSD Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PSD。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 PSD 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PSD 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 PSD 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 PSD 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 PSD 文件。 + 3. 设置选项以将 PSD 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 PSD 文件 + string filePath = "input.psd"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 PSD 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "PSD" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psd1.de.md b/content/viewer/net/psd1.de.md new file mode 100644 index 00000000..88716928 --- /dev/null +++ b/content/viewer/net/psd1.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSD1 Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PSD1 in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "PSD1 Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PSD1-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der PSD1-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie PSD1 in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei PSD1 mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei PSD1 im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei PSD1 ein + string filePath = "input.psd1"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei PSD1 mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "PSD1" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psd1.en.md b/content/viewer/net/psd1.en.md new file mode 100644 index 00000000..1cb8386b --- /dev/null +++ b/content/viewer/net/psd1.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSD1 Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display PSD1 in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "PSD1 file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display PSD1 file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render PSD1 file in C#" + content: | + With GroupDocs.Viewer you can render PSD1 to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the PSD1 file with full path. + 3. Set options to render PSD1 file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input PSD1 file + string filePath = "input.psd1"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render PSD1 file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "PSD1" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psd1.es.md b/content/viewer/net/psd1.es.md new file mode 100644 index 00000000..3a810e61 --- /dev/null +++ b/content/viewer/net/psd1.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSD1 API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar PSD1 en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "PSD1 visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos PSD1 en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo PSD1 en C#" + content: | + Con GroupDocs.Viewer puede renderizar PSD1 a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo PSD1 con la ruta completa. + 3. Configure opciones para representar el archivo PSD1 en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada PSD1 + string filePath = "input.psd1"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo PSD1 a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "PSD1" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psd1.fa.md b/content/viewer/net/psd1.fa.md new file mode 100644 index 00000000..a8a2bac7 --- /dev/null +++ b/content/viewer/net/psd1.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSD1 بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش PSD1 در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل PSD1 برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل PSD1 در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل PSD1 در C#" + content: | + با GroupDocs.Viewer می‌توانید PSD1 را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل PSD1 را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل PSD1 در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی PSD1 را تنظیم کنید + string filePath = "input.psd1"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل PSD1 را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "PSD1" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psd1.fr.md b/content/viewer/net/psd1.fr.md new file mode 100644 index 00000000..2764943a --- /dev/null +++ b/content/viewer/net/psd1.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET PSD1 - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher PSD1 dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "PSD1 visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier PSD1 dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier PSD1 dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer PSD1 au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier PSD1 avec le chemin complet. + 3. Définissez les options pour restituer le fichier PSD1 au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée PSD1 + string filePath = "input.psd1"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier PSD1 au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "PSD1" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psd1.id.md b/content/viewer/net/psd1.id.md new file mode 100644 index 00000000..6639a961 --- /dev/null +++ b/content/viewer/net/psd1.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSD1 Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan PSD1 di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "PSD1 penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file PSD1 dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file PSD1 di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender PSD1 ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file PSD1 dengan path lengkap. + 3. Tetapkan opsi untuk merender file PSD1 ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan PSD1 + string filePath = "input.psd1"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file PSD1 ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "PSD1" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psd1.it.md b/content/viewer/net/psd1.it.md new file mode 100644 index 00000000..3c352391 --- /dev/null +++ b/content/viewer/net/psd1.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET PSD1: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare PSD1 in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file PSD1 per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file PSD1 in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file PSD1 in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di PSD1 in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file PSD1 con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file PSD1 nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input PSD1 + string filePath = "input.psd1"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file PSD1 in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "PSD1" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psd1.ja.md b/content/viewer/net/psd1.ja.md new file mode 100644 index 00000000..4b442114 --- /dev/null +++ b/content/viewer/net/psd1.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSD1 ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PSD1 を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の PSD1 ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PSD1 ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で PSD1 ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で PSD1 を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、PSD1 ファイルをフルパスでロードします。 + 3. PSD1 ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 PSD1 ファイルを設定する + string filePath = "input.psd1"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた PSD1 ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "PSD1" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psd1.ko.md b/content/viewer/net/psd1.ko.md new file mode 100644 index 00000000..3d5be204 --- /dev/null +++ b/content/viewer/net/psd1.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSD1 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PSD1을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 PSD1 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PSD1 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 PSD1 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 PSD1을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 PSD1 파일을 로드합니다. + 3. PSD1 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 PSD1 파일 설정 + string filePath = "input.psd1"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 PSD1 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "PSD1" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psd1.pt.md b/content/viewer/net/psd1.pt.md new file mode 100644 index 00000000..3c075d45 --- /dev/null +++ b/content/viewer/net/psd1.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSD1 API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir PSD1 em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos PSD1 para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos PSD1 em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo PSD1 em C#" + content: | + Com GroupDocs.Viewer você pode renderizar PSD1 para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo PSD1 com caminho completo. + 3. Defina opções para renderizar o arquivo PSD1 em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada PSD1 + string filePath = "input.psd1"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo PSD1 em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "PSD1" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psd1.ru.md b/content/viewer/net/psd1.ru.md new file mode 100644 index 00000000..b74e5da6 --- /dev/null +++ b/content/viewer/net/psd1.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSD1 API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения PSD1 в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "PSD1 средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла PSD1 в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла PSD1 в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать PSD1 в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл PSD1 с полным путем. + 3. Установите параметры для преобразования файла PSD1 в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл PSD1 + string filePath = "input.psd1"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл PSD1 в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "PSD1" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psd1.th.md b/content/viewer/net/psd1.th.md new file mode 100644 index 00000000..233ae45c --- /dev/null +++ b/content/viewer/net/psd1.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSD1 Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง PSD1 ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ PSD1 สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ PSD1 ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ PSD1 ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล PSD1 เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ PSD1 ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ PSD1 เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต PSD1 + string filePath = "input.psd1"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ PSD1 เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "PSD1" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psd1.uk.md b/content/viewer/net/psd1.uk.md new file mode 100644 index 00000000..e2c1a32c --- /dev/null +++ b/content/viewer/net/psd1.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSD1 Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення PSD1 у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів PSD1 для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу PSD1 у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу PSD1 у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити PSD1 у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл PSD1 із повним шляхом. + 3. Встановіть параметри для перетворення файлу PSD1 у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл PSD1 + string filePath = "input.psd1"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл PSD1 у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "PSD1" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psd1.vi.md b/content/viewer/net/psd1.vi.md new file mode 100644 index 00000000..2c4c1625 --- /dev/null +++ b/content/viewer/net/psd1.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET PSD1 - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị PSD1 trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp PSD1 dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp PSD1 trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp PSD1 trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị PSD1 thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp PSD1 với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp PSD1 thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp PSD1 đầu vào + string filePath = "input.psd1"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp PSD1 thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "PSD1" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psd1.zh.md b/content/viewer/net/psd1.zh.md new file mode 100644 index 00000000..fc0c71a2 --- /dev/null +++ b/content/viewer/net/psd1.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSD1 Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PSD1。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 PSD1 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PSD1 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 PSD1 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 PSD1 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 PSD1 文件。 + 3. 设置选项以将 PSD1 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 PSD1 文件 + string filePath = "input.psd1"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 PSD1 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "PSD1" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psm1.de.md b/content/viewer/net/psm1.de.md new file mode 100644 index 00000000..7cfd643b --- /dev/null +++ b/content/viewer/net/psm1.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSM1 Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PSM1 in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "PSM1 Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PSM1-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der PSM1-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie PSM1 in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei PSM1 mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei PSM1 im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei PSM1 ein + string filePath = "input.psm1"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei PSM1 mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "PSM1" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psm1.en.md b/content/viewer/net/psm1.en.md new file mode 100644 index 00000000..a3c712c0 --- /dev/null +++ b/content/viewer/net/psm1.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSM1 Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display PSM1 in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "PSM1 file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display PSM1 file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render PSM1 file in C#" + content: | + With GroupDocs.Viewer you can render PSM1 to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the PSM1 file with full path. + 3. Set options to render PSM1 file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input PSM1 file + string filePath = "input.psm1"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render PSM1 file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "PSM1" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psm1.es.md b/content/viewer/net/psm1.es.md new file mode 100644 index 00000000..61c74561 --- /dev/null +++ b/content/viewer/net/psm1.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSM1 API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar PSM1 en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "PSM1 visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos PSM1 en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo PSM1 en C#" + content: | + Con GroupDocs.Viewer puede renderizar PSM1 a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo PSM1 con la ruta completa. + 3. Configure opciones para representar el archivo PSM1 en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada PSM1 + string filePath = "input.psm1"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo PSM1 a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "PSM1" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psm1.fa.md b/content/viewer/net/psm1.fa.md new file mode 100644 index 00000000..bc77cca4 --- /dev/null +++ b/content/viewer/net/psm1.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSM1 بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش PSM1 در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل PSM1 برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل PSM1 در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل PSM1 در C#" + content: | + با GroupDocs.Viewer می‌توانید PSM1 را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل PSM1 را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل PSM1 در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی PSM1 را تنظیم کنید + string filePath = "input.psm1"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل PSM1 را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "PSM1" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psm1.fr.md b/content/viewer/net/psm1.fr.md new file mode 100644 index 00000000..d6f1948a --- /dev/null +++ b/content/viewer/net/psm1.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET PSM1 - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher PSM1 dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "PSM1 visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier PSM1 dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier PSM1 dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer PSM1 au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier PSM1 avec le chemin complet. + 3. Définissez les options pour restituer le fichier PSM1 au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée PSM1 + string filePath = "input.psm1"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier PSM1 au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "PSM1" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psm1.id.md b/content/viewer/net/psm1.id.md new file mode 100644 index 00000000..38e388a1 --- /dev/null +++ b/content/viewer/net/psm1.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSM1 Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan PSM1 di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "PSM1 penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file PSM1 dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file PSM1 di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender PSM1 ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file PSM1 dengan path lengkap. + 3. Tetapkan opsi untuk merender file PSM1 ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan PSM1 + string filePath = "input.psm1"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file PSM1 ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "PSM1" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psm1.it.md b/content/viewer/net/psm1.it.md new file mode 100644 index 00000000..54aa522e --- /dev/null +++ b/content/viewer/net/psm1.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET PSM1: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare PSM1 in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file PSM1 per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file PSM1 in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file PSM1 in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di PSM1 in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file PSM1 con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file PSM1 nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input PSM1 + string filePath = "input.psm1"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file PSM1 in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "PSM1" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psm1.ja.md b/content/viewer/net/psm1.ja.md new file mode 100644 index 00000000..a09354bf --- /dev/null +++ b/content/viewer/net/psm1.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSM1 ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PSM1 を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の PSM1 ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PSM1 ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で PSM1 ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で PSM1 を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、PSM1 ファイルをフルパスでロードします。 + 3. PSM1 ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 PSM1 ファイルを設定する + string filePath = "input.psm1"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた PSM1 ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "PSM1" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psm1.ko.md b/content/viewer/net/psm1.ko.md new file mode 100644 index 00000000..bed7277f --- /dev/null +++ b/content/viewer/net/psm1.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSM1 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PSM1을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 PSM1 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PSM1 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 PSM1 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 PSM1을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 PSM1 파일을 로드합니다. + 3. PSM1 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 PSM1 파일 설정 + string filePath = "input.psm1"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 PSM1 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "PSM1" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psm1.pt.md b/content/viewer/net/psm1.pt.md new file mode 100644 index 00000000..2b224a49 --- /dev/null +++ b/content/viewer/net/psm1.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSM1 API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir PSM1 em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos PSM1 para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos PSM1 em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo PSM1 em C#" + content: | + Com GroupDocs.Viewer você pode renderizar PSM1 para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo PSM1 com caminho completo. + 3. Defina opções para renderizar o arquivo PSM1 em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada PSM1 + string filePath = "input.psm1"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo PSM1 em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "PSM1" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psm1.ru.md b/content/viewer/net/psm1.ru.md new file mode 100644 index 00000000..ed49017e --- /dev/null +++ b/content/viewer/net/psm1.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSM1 API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения PSM1 в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "PSM1 средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла PSM1 в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла PSM1 в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать PSM1 в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл PSM1 с полным путем. + 3. Установите параметры для преобразования файла PSM1 в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл PSM1 + string filePath = "input.psm1"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл PSM1 в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "PSM1" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psm1.th.md b/content/viewer/net/psm1.th.md new file mode 100644 index 00000000..b037955c --- /dev/null +++ b/content/viewer/net/psm1.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSM1 Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง PSM1 ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ PSM1 สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ PSM1 ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ PSM1 ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล PSM1 เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ PSM1 ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ PSM1 เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต PSM1 + string filePath = "input.psm1"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ PSM1 เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "PSM1" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psm1.uk.md b/content/viewer/net/psm1.uk.md new file mode 100644 index 00000000..0a31ba3a --- /dev/null +++ b/content/viewer/net/psm1.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSM1 Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення PSM1 у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів PSM1 для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу PSM1 у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу PSM1 у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити PSM1 у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл PSM1 із повним шляхом. + 3. Встановіть параметри для перетворення файлу PSM1 у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл PSM1 + string filePath = "input.psm1"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл PSM1 у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "PSM1" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psm1.vi.md b/content/viewer/net/psm1.vi.md new file mode 100644 index 00000000..187c2537 --- /dev/null +++ b/content/viewer/net/psm1.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET PSM1 - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị PSM1 trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp PSM1 dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp PSM1 trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp PSM1 trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị PSM1 thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp PSM1 với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp PSM1 thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp PSM1 đầu vào + string filePath = "input.psm1"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp PSM1 thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "PSM1" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/psm1.zh.md b/content/viewer/net/psm1.zh.md new file mode 100644 index 00000000..5a678bd0 --- /dev/null +++ b/content/viewer/net/psm1.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PSM1 Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PSM1。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 PSM1 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PSM1 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 PSM1 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 PSM1 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 PSM1 文件。 + 3. 设置选项以将 PSM1 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 PSM1 文件 + string filePath = "input.psm1"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 PSM1 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "PSM1" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pst.de.md b/content/viewer/net/pst.de.md new file mode 100644 index 00000000..54ab516b --- /dev/null +++ b/content/viewer/net/pst.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PST Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PST in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "PST Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PST-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der PST-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie PST in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei PST mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei PST im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei PST ein + string filePath = "input.pst"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei PST mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "PST" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pst.en.md b/content/viewer/net/pst.en.md new file mode 100644 index 00000000..99c451d9 --- /dev/null +++ b/content/viewer/net/pst.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PST Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display PST in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "PST file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display PST file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render PST file in C#" + content: | + With GroupDocs.Viewer you can render PST to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the PST file with full path. + 3. Set options to render PST file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input PST file + string filePath = "input.pst"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render PST file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "PST" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pst.es.md b/content/viewer/net/pst.es.md new file mode 100644 index 00000000..7a4b33b5 --- /dev/null +++ b/content/viewer/net/pst.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PST API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar PST en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "PST visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos PST en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo PST en C#" + content: | + Con GroupDocs.Viewer puede renderizar PST a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo PST con la ruta completa. + 3. Configure opciones para representar el archivo PST en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada PST + string filePath = "input.pst"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo PST a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "PST" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pst.fa.md b/content/viewer/net/pst.fa.md new file mode 100644 index 00000000..4b48c532 --- /dev/null +++ b/content/viewer/net/pst.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PST بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش PST در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل PST برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل PST در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل PST در C#" + content: | + با GroupDocs.Viewer می‌توانید PST را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل PST را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل PST در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی PST را تنظیم کنید + string filePath = "input.pst"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل PST را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "PST" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pst.fr.md b/content/viewer/net/pst.fr.md new file mode 100644 index 00000000..a4688f12 --- /dev/null +++ b/content/viewer/net/pst.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET PST - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher PST dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "PST visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier PST dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier PST dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer PST au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier PST avec le chemin complet. + 3. Définissez les options pour restituer le fichier PST au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée PST + string filePath = "input.pst"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier PST au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "PST" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pst.id.md b/content/viewer/net/pst.id.md new file mode 100644 index 00000000..dd085299 --- /dev/null +++ b/content/viewer/net/pst.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PST Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan PST di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "PST penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file PST dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file PST di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender PST ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file PST dengan path lengkap. + 3. Tetapkan opsi untuk merender file PST ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan PST + string filePath = "input.pst"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file PST ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "PST" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pst.it.md b/content/viewer/net/pst.it.md new file mode 100644 index 00000000..50fb9ef8 --- /dev/null +++ b/content/viewer/net/pst.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET PST: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare PST in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file PST per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file PST in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file PST in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di PST in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file PST con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file PST nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input PST + string filePath = "input.pst"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file PST in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "PST" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pst.ja.md b/content/viewer/net/pst.ja.md new file mode 100644 index 00000000..4cbaf51d --- /dev/null +++ b/content/viewer/net/pst.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PST ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PST を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の PST ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PST ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で PST ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で PST を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、PST ファイルをフルパスでロードします。 + 3. PST ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 PST ファイルを設定する + string filePath = "input.pst"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた PST ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "PST" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pst.ko.md b/content/viewer/net/pst.ko.md new file mode 100644 index 00000000..1d9fce36 --- /dev/null +++ b/content/viewer/net/pst.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PST 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PST을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 PST 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PST 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 PST 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 PST을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 PST 파일을 로드합니다. + 3. PST 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 PST 파일 설정 + string filePath = "input.pst"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 PST 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "PST" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pst.pt.md b/content/viewer/net/pst.pt.md new file mode 100644 index 00000000..83b47661 --- /dev/null +++ b/content/viewer/net/pst.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PST API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir PST em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos PST para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos PST em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo PST em C#" + content: | + Com GroupDocs.Viewer você pode renderizar PST para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo PST com caminho completo. + 3. Defina opções para renderizar o arquivo PST em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada PST + string filePath = "input.pst"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo PST em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "PST" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pst.ru.md b/content/viewer/net/pst.ru.md new file mode 100644 index 00000000..d5c6556a --- /dev/null +++ b/content/viewer/net/pst.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PST API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения PST в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "PST средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла PST в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла PST в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать PST в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл PST с полным путем. + 3. Установите параметры для преобразования файла PST в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл PST + string filePath = "input.pst"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл PST в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "PST" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pst.th.md b/content/viewer/net/pst.th.md new file mode 100644 index 00000000..8168f306 --- /dev/null +++ b/content/viewer/net/pst.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PST Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง PST ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ PST สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ PST ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ PST ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล PST เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ PST ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ PST เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต PST + string filePath = "input.pst"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ PST เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "PST" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pst.uk.md b/content/viewer/net/pst.uk.md new file mode 100644 index 00000000..dae009e1 --- /dev/null +++ b/content/viewer/net/pst.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PST Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення PST у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів PST для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу PST у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу PST у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити PST у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл PST із повним шляхом. + 3. Встановіть параметри для перетворення файлу PST у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл PST + string filePath = "input.pst"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл PST у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "PST" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pst.vi.md b/content/viewer/net/pst.vi.md new file mode 100644 index 00000000..a528a1f5 --- /dev/null +++ b/content/viewer/net/pst.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET PST - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị PST trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp PST dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp PST trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp PST trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị PST thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp PST với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp PST thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp PST đầu vào + string filePath = "input.pst"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp PST thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "PST" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/pst.zh.md b/content/viewer/net/pst.zh.md new file mode 100644 index 00000000..95368024 --- /dev/null +++ b/content/viewer/net/pst.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PST Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PST。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 PST 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PST 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 PST 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 PST 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 PST 文件。 + 3. 设置选项以将 PST 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 PST 文件 + string filePath = "input.pst"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 PST 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "PST" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/py.de.md b/content/viewer/net/py.de.md new file mode 100644 index 00000000..8a9105d6 --- /dev/null +++ b/content/viewer/net/py.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PY Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PY in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "PY Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von PY-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der PY-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie PY in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei PY mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei PY im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei PY ein + string filePath = "input.py"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei PY mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "PY" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/py.en.md b/content/viewer/net/py.en.md new file mode 100644 index 00000000..b92eef71 --- /dev/null +++ b/content/viewer/net/py.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PY Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display PY in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "PY file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display PY file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render PY file in C#" + content: | + With GroupDocs.Viewer you can render PY to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the PY file with full path. + 3. Set options to render PY file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input PY file + string filePath = "input.py"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render PY file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "PY" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/py.es.md b/content/viewer/net/py.es.md new file mode 100644 index 00000000..fc00ed6d --- /dev/null +++ b/content/viewer/net/py.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PY API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar PY en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "PY visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos PY en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo PY en C#" + content: | + Con GroupDocs.Viewer puede renderizar PY a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo PY con la ruta completa. + 3. Configure opciones para representar el archivo PY en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada PY + string filePath = "input.py"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo PY a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "PY" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/py.fa.md b/content/viewer/net/py.fa.md new file mode 100644 index 00000000..c9bc74a8 --- /dev/null +++ b/content/viewer/net/py.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PY بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش PY در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل PY برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل PY در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل PY در C#" + content: | + با GroupDocs.Viewer می‌توانید PY را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل PY را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل PY در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی PY را تنظیم کنید + string filePath = "input.py"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل PY را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "PY" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/py.fr.md b/content/viewer/net/py.fr.md new file mode 100644 index 00000000..01df2900 --- /dev/null +++ b/content/viewer/net/py.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET PY - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher PY dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "PY visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier PY dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier PY dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer PY au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier PY avec le chemin complet. + 3. Définissez les options pour restituer le fichier PY au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée PY + string filePath = "input.py"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier PY au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "PY" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/py.id.md b/content/viewer/net/py.id.md new file mode 100644 index 00000000..a5d16f43 --- /dev/null +++ b/content/viewer/net/py.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PY Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan PY di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "PY penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file PY dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file PY di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender PY ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file PY dengan path lengkap. + 3. Tetapkan opsi untuk merender file PY ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan PY + string filePath = "input.py"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file PY ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "PY" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/py.it.md b/content/viewer/net/py.it.md new file mode 100644 index 00000000..05e56365 --- /dev/null +++ b/content/viewer/net/py.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET PY: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare PY in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file PY per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file PY in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file PY in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di PY in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file PY con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file PY nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input PY + string filePath = "input.py"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file PY in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "PY" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/py.ja.md b/content/viewer/net/py.ja.md new file mode 100644 index 00000000..58febf3c --- /dev/null +++ b/content/viewer/net/py.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PY ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PY を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の PY ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで PY ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で PY ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で PY を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、PY ファイルをフルパスでロードします。 + 3. PY ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 PY ファイルを設定する + string filePath = "input.py"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた PY ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "PY" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/py.ko.md b/content/viewer/net/py.ko.md new file mode 100644 index 00000000..9a378402 --- /dev/null +++ b/content/viewer/net/py.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PY 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PY을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 PY 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 PY 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 PY 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 PY을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 PY 파일을 로드합니다. + 3. PY 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 PY 파일 설정 + string filePath = "input.py"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 PY 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "PY" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/py.pt.md b/content/viewer/net/py.pt.md new file mode 100644 index 00000000..bc99a4b0 --- /dev/null +++ b/content/viewer/net/py.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PY API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir PY em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos PY para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos PY em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo PY em C#" + content: | + Com GroupDocs.Viewer você pode renderizar PY para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo PY com caminho completo. + 3. Defina opções para renderizar o arquivo PY em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada PY + string filePath = "input.py"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo PY em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "PY" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/py.ru.md b/content/viewer/net/py.ru.md new file mode 100644 index 00000000..25b6498c --- /dev/null +++ b/content/viewer/net/py.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PY API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения PY в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "PY средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла PY в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла PY в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать PY в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл PY с полным путем. + 3. Установите параметры для преобразования файла PY в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл PY + string filePath = "input.py"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл PY в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "PY" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/py.th.md b/content/viewer/net/py.th.md new file mode 100644 index 00000000..50f12399 --- /dev/null +++ b/content/viewer/net/py.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PY Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง PY ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ PY สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ PY ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ PY ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล PY เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ PY ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ PY เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต PY + string filePath = "input.py"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ PY เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "PY" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/py.uk.md b/content/viewer/net/py.uk.md new file mode 100644 index 00000000..efb3c773 --- /dev/null +++ b/content/viewer/net/py.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PY Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення PY у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів PY для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу PY у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу PY у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити PY у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл PY із повним шляхом. + 3. Встановіть параметри для перетворення файлу PY у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл PY + string filePath = "input.py"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл PY у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "PY" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/py.vi.md b/content/viewer/net/py.vi.md new file mode 100644 index 00000000..12c92b54 --- /dev/null +++ b/content/viewer/net/py.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET PY - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị PY trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp PY dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp PY trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp PY trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị PY thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp PY với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp PY thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp PY đầu vào + string filePath = "input.py"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp PY thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "PY" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/py.zh.md b/content/viewer/net/py.zh.md new file mode 100644 index 00000000..f88fec25 --- /dev/null +++ b/content/viewer/net/py.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET PY Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PY。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 PY 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 PY 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 PY 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 PY 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 PY 文件。 + 3. 设置选项以将 PY 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 PY 文件 + string filePath = "input.py"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 PY 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "PY" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rar.de.md b/content/viewer/net/rar.de.md new file mode 100644 index 00000000..25038298 --- /dev/null +++ b/content/viewer/net/rar.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RAR Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von RAR in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "RAR Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von RAR-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der RAR-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie RAR in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei RAR mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei RAR im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei RAR ein + string filePath = "input.rar"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei RAR mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "RAR" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rar.en.md b/content/viewer/net/rar.en.md new file mode 100644 index 00000000..c7ea003c --- /dev/null +++ b/content/viewer/net/rar.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RAR Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display RAR in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "RAR file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display RAR file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render RAR file in C#" + content: | + With GroupDocs.Viewer you can render RAR to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the RAR file with full path. + 3. Set options to render RAR file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input RAR file + string filePath = "input.rar"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render RAR file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "RAR" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rar.es.md b/content/viewer/net/rar.es.md new file mode 100644 index 00000000..8165bfe6 --- /dev/null +++ b/content/viewer/net/rar.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RAR API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar RAR en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "RAR visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos RAR en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo RAR en C#" + content: | + Con GroupDocs.Viewer puede renderizar RAR a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo RAR con la ruta completa. + 3. Configure opciones para representar el archivo RAR en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada RAR + string filePath = "input.rar"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo RAR a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "RAR" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rar.fa.md b/content/viewer/net/rar.fa.md new file mode 100644 index 00000000..4f837223 --- /dev/null +++ b/content/viewer/net/rar.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RAR بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش RAR در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل RAR برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل RAR در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل RAR در C#" + content: | + با GroupDocs.Viewer می‌توانید RAR را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل RAR را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل RAR در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی RAR را تنظیم کنید + string filePath = "input.rar"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل RAR را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "RAR" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rar.fr.md b/content/viewer/net/rar.fr.md new file mode 100644 index 00000000..31914c98 --- /dev/null +++ b/content/viewer/net/rar.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET RAR - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher RAR dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "RAR visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier RAR dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier RAR dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer RAR au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier RAR avec le chemin complet. + 3. Définissez les options pour restituer le fichier RAR au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée RAR + string filePath = "input.rar"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier RAR au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "RAR" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rar.id.md b/content/viewer/net/rar.id.md new file mode 100644 index 00000000..88ce6b48 --- /dev/null +++ b/content/viewer/net/rar.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RAR Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan RAR di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "RAR penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file RAR dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file RAR di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender RAR ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file RAR dengan path lengkap. + 3. Tetapkan opsi untuk merender file RAR ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan RAR + string filePath = "input.rar"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file RAR ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "RAR" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rar.it.md b/content/viewer/net/rar.it.md new file mode 100644 index 00000000..af489c9e --- /dev/null +++ b/content/viewer/net/rar.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET RAR: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare RAR in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file RAR per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file RAR in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file RAR in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di RAR in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file RAR con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file RAR nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input RAR + string filePath = "input.rar"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file RAR in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "RAR" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rar.ja.md b/content/viewer/net/rar.ja.md new file mode 100644 index 00000000..b9888fd3 --- /dev/null +++ b/content/viewer/net/rar.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RAR ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで RAR を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の RAR ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで RAR ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で RAR ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で RAR を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、RAR ファイルをフルパスでロードします。 + 3. RAR ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 RAR ファイルを設定する + string filePath = "input.rar"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた RAR ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "RAR" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rar.ko.md b/content/viewer/net/rar.ko.md new file mode 100644 index 00000000..ca8a2a04 --- /dev/null +++ b/content/viewer/net/rar.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RAR 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 RAR을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 RAR 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 RAR 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 RAR 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 RAR을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 RAR 파일을 로드합니다. + 3. RAR 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 RAR 파일 설정 + string filePath = "input.rar"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 RAR 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "RAR" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rar.pt.md b/content/viewer/net/rar.pt.md new file mode 100644 index 00000000..df8a42cb --- /dev/null +++ b/content/viewer/net/rar.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RAR API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir RAR em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos RAR para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos RAR em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo RAR em C#" + content: | + Com GroupDocs.Viewer você pode renderizar RAR para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo RAR com caminho completo. + 3. Defina opções para renderizar o arquivo RAR em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada RAR + string filePath = "input.rar"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo RAR em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "RAR" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rar.ru.md b/content/viewer/net/rar.ru.md new file mode 100644 index 00000000..23b47ec9 --- /dev/null +++ b/content/viewer/net/rar.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RAR API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения RAR в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "RAR средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла RAR в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла RAR в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать RAR в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл RAR с полным путем. + 3. Установите параметры для преобразования файла RAR в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл RAR + string filePath = "input.rar"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл RAR в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "RAR" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rar.th.md b/content/viewer/net/rar.th.md new file mode 100644 index 00000000..f5b47961 --- /dev/null +++ b/content/viewer/net/rar.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RAR Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง RAR ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ RAR สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ RAR ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ RAR ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล RAR เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ RAR ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ RAR เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต RAR + string filePath = "input.rar"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ RAR เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "RAR" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rar.uk.md b/content/viewer/net/rar.uk.md new file mode 100644 index 00000000..12c660c1 --- /dev/null +++ b/content/viewer/net/rar.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RAR Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення RAR у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів RAR для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу RAR у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу RAR у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити RAR у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл RAR із повним шляхом. + 3. Встановіть параметри для перетворення файлу RAR у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл RAR + string filePath = "input.rar"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл RAR у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "RAR" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rar.vi.md b/content/viewer/net/rar.vi.md new file mode 100644 index 00000000..99abc625 --- /dev/null +++ b/content/viewer/net/rar.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET RAR - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị RAR trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp RAR dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp RAR trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp RAR trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị RAR thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp RAR với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp RAR thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp RAR đầu vào + string filePath = "input.rar"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp RAR thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "RAR" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rar.zh.md b/content/viewer/net/rar.zh.md new file mode 100644 index 00000000..ac03e159 --- /dev/null +++ b/content/viewer/net/rar.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RAR Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 RAR。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 RAR 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 RAR 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 RAR 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 RAR 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 RAR 文件。 + 3. 设置选项以将 RAR 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 RAR 文件 + string filePath = "input.rar"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 RAR 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "RAR" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rb.de.md b/content/viewer/net/rb.de.md new file mode 100644 index 00000000..8d9b669f --- /dev/null +++ b/content/viewer/net/rb.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RB Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von RB in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "RB Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von RB-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der RB-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie RB in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei RB mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei RB im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei RB ein + string filePath = "input.rb"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei RB mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "RB" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rb.en.md b/content/viewer/net/rb.en.md new file mode 100644 index 00000000..0d26a95b --- /dev/null +++ b/content/viewer/net/rb.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RB Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display RB in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "RB file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display RB file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render RB file in C#" + content: | + With GroupDocs.Viewer you can render RB to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the RB file with full path. + 3. Set options to render RB file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input RB file + string filePath = "input.rb"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render RB file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "RB" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rb.es.md b/content/viewer/net/rb.es.md new file mode 100644 index 00000000..f88ece01 --- /dev/null +++ b/content/viewer/net/rb.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RB API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar RB en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "RB visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos RB en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo RB en C#" + content: | + Con GroupDocs.Viewer puede renderizar RB a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo RB con la ruta completa. + 3. Configure opciones para representar el archivo RB en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada RB + string filePath = "input.rb"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo RB a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "RB" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rb.fa.md b/content/viewer/net/rb.fa.md new file mode 100644 index 00000000..63e87520 --- /dev/null +++ b/content/viewer/net/rb.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RB بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش RB در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل RB برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل RB در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل RB در C#" + content: | + با GroupDocs.Viewer می‌توانید RB را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل RB را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل RB در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی RB را تنظیم کنید + string filePath = "input.rb"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل RB را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "RB" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rb.fr.md b/content/viewer/net/rb.fr.md new file mode 100644 index 00000000..e5c7177c --- /dev/null +++ b/content/viewer/net/rb.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET RB - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher RB dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "RB visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier RB dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier RB dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer RB au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier RB avec le chemin complet. + 3. Définissez les options pour restituer le fichier RB au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée RB + string filePath = "input.rb"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier RB au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "RB" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rb.id.md b/content/viewer/net/rb.id.md new file mode 100644 index 00000000..e27f1212 --- /dev/null +++ b/content/viewer/net/rb.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RB Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan RB di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "RB penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file RB dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file RB di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender RB ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file RB dengan path lengkap. + 3. Tetapkan opsi untuk merender file RB ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan RB + string filePath = "input.rb"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file RB ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "RB" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rb.it.md b/content/viewer/net/rb.it.md new file mode 100644 index 00000000..6d7b2347 --- /dev/null +++ b/content/viewer/net/rb.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET RB: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare RB in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file RB per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file RB in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file RB in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di RB in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file RB con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file RB nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input RB + string filePath = "input.rb"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file RB in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "RB" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rb.ja.md b/content/viewer/net/rb.ja.md new file mode 100644 index 00000000..ed5bb2c1 --- /dev/null +++ b/content/viewer/net/rb.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RB ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで RB を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の RB ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで RB ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で RB ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で RB を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、RB ファイルをフルパスでロードします。 + 3. RB ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 RB ファイルを設定する + string filePath = "input.rb"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた RB ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "RB" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rb.ko.md b/content/viewer/net/rb.ko.md new file mode 100644 index 00000000..46ca3f98 --- /dev/null +++ b/content/viewer/net/rb.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RB 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 RB을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 RB 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 RB 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 RB 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 RB을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 RB 파일을 로드합니다. + 3. RB 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 RB 파일 설정 + string filePath = "input.rb"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 RB 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "RB" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rb.pt.md b/content/viewer/net/rb.pt.md new file mode 100644 index 00000000..2bb4cbeb --- /dev/null +++ b/content/viewer/net/rb.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RB API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir RB em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos RB para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos RB em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo RB em C#" + content: | + Com GroupDocs.Viewer você pode renderizar RB para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo RB com caminho completo. + 3. Defina opções para renderizar o arquivo RB em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada RB + string filePath = "input.rb"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo RB em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "RB" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rb.ru.md b/content/viewer/net/rb.ru.md new file mode 100644 index 00000000..6f47f3e1 --- /dev/null +++ b/content/viewer/net/rb.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RB API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения RB в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "RB средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла RB в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла RB в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать RB в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл RB с полным путем. + 3. Установите параметры для преобразования файла RB в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл RB + string filePath = "input.rb"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл RB в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "RB" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rb.th.md b/content/viewer/net/rb.th.md new file mode 100644 index 00000000..d243912c --- /dev/null +++ b/content/viewer/net/rb.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RB Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง RB ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ RB สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ RB ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ RB ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล RB เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ RB ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ RB เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต RB + string filePath = "input.rb"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ RB เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "RB" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rb.uk.md b/content/viewer/net/rb.uk.md new file mode 100644 index 00000000..f22bf270 --- /dev/null +++ b/content/viewer/net/rb.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RB Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення RB у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів RB для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу RB у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу RB у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити RB у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл RB із повним шляхом. + 3. Встановіть параметри для перетворення файлу RB у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл RB + string filePath = "input.rb"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл RB у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "RB" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rb.vi.md b/content/viewer/net/rb.vi.md new file mode 100644 index 00000000..ab6712ac --- /dev/null +++ b/content/viewer/net/rb.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET RB - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị RB trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp RB dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp RB trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp RB trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị RB thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp RB với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp RB thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp RB đầu vào + string filePath = "input.rb"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp RB thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "RB" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rb.zh.md b/content/viewer/net/rb.zh.md new file mode 100644 index 00000000..0164fc10 --- /dev/null +++ b/content/viewer/net/rb.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RB Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 RB。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 RB 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 RB 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 RB 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 RB 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 RB 文件。 + 3. 设置选项以将 RB 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 RB 文件 + string filePath = "input.rb"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 RB 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "RB" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rst.de.md b/content/viewer/net/rst.de.md new file mode 100644 index 00000000..26f15eee --- /dev/null +++ b/content/viewer/net/rst.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RST Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von RST in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "RST Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von RST-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der RST-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie RST in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei RST mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei RST im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei RST ein + string filePath = "input.rst"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei RST mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "RST" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rst.en.md b/content/viewer/net/rst.en.md new file mode 100644 index 00000000..163bf320 --- /dev/null +++ b/content/viewer/net/rst.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RST Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display RST in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "RST file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display RST file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render RST file in C#" + content: | + With GroupDocs.Viewer you can render RST to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the RST file with full path. + 3. Set options to render RST file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input RST file + string filePath = "input.rst"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render RST file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "RST" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rst.es.md b/content/viewer/net/rst.es.md new file mode 100644 index 00000000..ed2c35f9 --- /dev/null +++ b/content/viewer/net/rst.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RST API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar RST en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "RST visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos RST en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo RST en C#" + content: | + Con GroupDocs.Viewer puede renderizar RST a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo RST con la ruta completa. + 3. Configure opciones para representar el archivo RST en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada RST + string filePath = "input.rst"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo RST a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "RST" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rst.fa.md b/content/viewer/net/rst.fa.md new file mode 100644 index 00000000..34f93b5b --- /dev/null +++ b/content/viewer/net/rst.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RST بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش RST در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل RST برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل RST در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل RST در C#" + content: | + با GroupDocs.Viewer می‌توانید RST را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل RST را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل RST در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی RST را تنظیم کنید + string filePath = "input.rst"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل RST را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "RST" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rst.fr.md b/content/viewer/net/rst.fr.md new file mode 100644 index 00000000..ca71f37c --- /dev/null +++ b/content/viewer/net/rst.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET RST - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher RST dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "RST visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier RST dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier RST dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer RST au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier RST avec le chemin complet. + 3. Définissez les options pour restituer le fichier RST au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée RST + string filePath = "input.rst"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier RST au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "RST" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rst.id.md b/content/viewer/net/rst.id.md new file mode 100644 index 00000000..32701721 --- /dev/null +++ b/content/viewer/net/rst.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RST Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan RST di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "RST penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file RST dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file RST di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender RST ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file RST dengan path lengkap. + 3. Tetapkan opsi untuk merender file RST ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan RST + string filePath = "input.rst"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file RST ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "RST" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rst.it.md b/content/viewer/net/rst.it.md new file mode 100644 index 00000000..dff351c3 --- /dev/null +++ b/content/viewer/net/rst.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET RST: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare RST in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file RST per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file RST in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file RST in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di RST in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file RST con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file RST nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input RST + string filePath = "input.rst"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file RST in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "RST" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rst.ja.md b/content/viewer/net/rst.ja.md new file mode 100644 index 00000000..989d0ebe --- /dev/null +++ b/content/viewer/net/rst.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RST ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで RST を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の RST ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで RST ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で RST ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で RST を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、RST ファイルをフルパスでロードします。 + 3. RST ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 RST ファイルを設定する + string filePath = "input.rst"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた RST ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "RST" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rst.ko.md b/content/viewer/net/rst.ko.md new file mode 100644 index 00000000..2391c447 --- /dev/null +++ b/content/viewer/net/rst.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RST 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 RST을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 RST 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 RST 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 RST 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 RST을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 RST 파일을 로드합니다. + 3. RST 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 RST 파일 설정 + string filePath = "input.rst"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 RST 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "RST" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rst.pt.md b/content/viewer/net/rst.pt.md new file mode 100644 index 00000000..d98d93fc --- /dev/null +++ b/content/viewer/net/rst.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RST API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir RST em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos RST para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos RST em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo RST em C#" + content: | + Com GroupDocs.Viewer você pode renderizar RST para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo RST com caminho completo. + 3. Defina opções para renderizar o arquivo RST em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada RST + string filePath = "input.rst"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo RST em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "RST" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rst.ru.md b/content/viewer/net/rst.ru.md new file mode 100644 index 00000000..54dfc36d --- /dev/null +++ b/content/viewer/net/rst.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RST API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения RST в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "RST средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла RST в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла RST в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать RST в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл RST с полным путем. + 3. Установите параметры для преобразования файла RST в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл RST + string filePath = "input.rst"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл RST в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "RST" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rst.th.md b/content/viewer/net/rst.th.md new file mode 100644 index 00000000..61e65d1e --- /dev/null +++ b/content/viewer/net/rst.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RST Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง RST ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ RST สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ RST ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ RST ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล RST เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ RST ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ RST เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต RST + string filePath = "input.rst"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ RST เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "RST" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rst.uk.md b/content/viewer/net/rst.uk.md new file mode 100644 index 00000000..b94005b0 --- /dev/null +++ b/content/viewer/net/rst.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RST Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення RST у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів RST для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу RST у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу RST у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити RST у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл RST із повним шляхом. + 3. Встановіть параметри для перетворення файлу RST у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл RST + string filePath = "input.rst"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл RST у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "RST" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rst.vi.md b/content/viewer/net/rst.vi.md new file mode 100644 index 00000000..23d83200 --- /dev/null +++ b/content/viewer/net/rst.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET RST - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị RST trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp RST dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp RST trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp RST trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị RST thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp RST với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp RST thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp RST đầu vào + string filePath = "input.rst"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp RST thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "RST" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rst.zh.md b/content/viewer/net/rst.zh.md new file mode 100644 index 00000000..178139d4 --- /dev/null +++ b/content/viewer/net/rst.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RST Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 RST。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 RST 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 RST 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 RST 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 RST 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 RST 文件。 + 3. 设置选项以将 RST 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 RST 文件 + string filePath = "input.rst"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 RST 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "RST" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rtf.de.md b/content/viewer/net/rtf.de.md new file mode 100644 index 00000000..76ea3c6d --- /dev/null +++ b/content/viewer/net/rtf.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RTF Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von RTF in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "RTF Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von RTF-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der RTF-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie RTF in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei RTF mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei RTF im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei RTF ein + string filePath = "input.rtf"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei RTF mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "RTF" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rtf.en.md b/content/viewer/net/rtf.en.md new file mode 100644 index 00000000..c08faa7c --- /dev/null +++ b/content/viewer/net/rtf.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RTF Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display RTF in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "RTF file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display RTF file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render RTF file in C#" + content: | + With GroupDocs.Viewer you can render RTF to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the RTF file with full path. + 3. Set options to render RTF file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input RTF file + string filePath = "input.rtf"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render RTF file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "RTF" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rtf.es.md b/content/viewer/net/rtf.es.md new file mode 100644 index 00000000..a1eb2a6e --- /dev/null +++ b/content/viewer/net/rtf.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RTF API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar RTF en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "RTF visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos RTF en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo RTF en C#" + content: | + Con GroupDocs.Viewer puede renderizar RTF a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo RTF con la ruta completa. + 3. Configure opciones para representar el archivo RTF en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada RTF + string filePath = "input.rtf"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo RTF a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "RTF" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rtf.fa.md b/content/viewer/net/rtf.fa.md new file mode 100644 index 00000000..0fefedf6 --- /dev/null +++ b/content/viewer/net/rtf.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RTF بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش RTF در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل RTF برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل RTF در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل RTF در C#" + content: | + با GroupDocs.Viewer می‌توانید RTF را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل RTF را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل RTF در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی RTF را تنظیم کنید + string filePath = "input.rtf"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل RTF را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "RTF" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rtf.fr.md b/content/viewer/net/rtf.fr.md new file mode 100644 index 00000000..50644716 --- /dev/null +++ b/content/viewer/net/rtf.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET RTF - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher RTF dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "RTF visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier RTF dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier RTF dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer RTF au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier RTF avec le chemin complet. + 3. Définissez les options pour restituer le fichier RTF au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée RTF + string filePath = "input.rtf"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier RTF au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "RTF" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rtf.id.md b/content/viewer/net/rtf.id.md new file mode 100644 index 00000000..4b07a066 --- /dev/null +++ b/content/viewer/net/rtf.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RTF Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan RTF di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "RTF penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file RTF dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file RTF di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender RTF ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file RTF dengan path lengkap. + 3. Tetapkan opsi untuk merender file RTF ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan RTF + string filePath = "input.rtf"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file RTF ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "RTF" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rtf.it.md b/content/viewer/net/rtf.it.md new file mode 100644 index 00000000..b79293e2 --- /dev/null +++ b/content/viewer/net/rtf.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET RTF: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare RTF in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file RTF per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file RTF in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file RTF in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di RTF in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file RTF con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file RTF nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input RTF + string filePath = "input.rtf"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file RTF in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "RTF" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rtf.ja.md b/content/viewer/net/rtf.ja.md new file mode 100644 index 00000000..1b85b524 --- /dev/null +++ b/content/viewer/net/rtf.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RTF ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで RTF を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の RTF ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで RTF ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で RTF ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で RTF を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、RTF ファイルをフルパスでロードします。 + 3. RTF ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 RTF ファイルを設定する + string filePath = "input.rtf"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた RTF ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "RTF" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rtf.ko.md b/content/viewer/net/rtf.ko.md new file mode 100644 index 00000000..2fc041e1 --- /dev/null +++ b/content/viewer/net/rtf.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RTF 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 RTF을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 RTF 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 RTF 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 RTF 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 RTF을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 RTF 파일을 로드합니다. + 3. RTF 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 RTF 파일 설정 + string filePath = "input.rtf"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 RTF 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "RTF" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rtf.pt.md b/content/viewer/net/rtf.pt.md new file mode 100644 index 00000000..b7a248dc --- /dev/null +++ b/content/viewer/net/rtf.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RTF API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir RTF em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos RTF para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos RTF em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo RTF em C#" + content: | + Com GroupDocs.Viewer você pode renderizar RTF para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo RTF com caminho completo. + 3. Defina opções para renderizar o arquivo RTF em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada RTF + string filePath = "input.rtf"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo RTF em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "RTF" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rtf.ru.md b/content/viewer/net/rtf.ru.md new file mode 100644 index 00000000..90fc5a2f --- /dev/null +++ b/content/viewer/net/rtf.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RTF API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения RTF в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "RTF средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла RTF в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла RTF в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать RTF в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл RTF с полным путем. + 3. Установите параметры для преобразования файла RTF в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл RTF + string filePath = "input.rtf"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл RTF в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "RTF" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rtf.th.md b/content/viewer/net/rtf.th.md new file mode 100644 index 00000000..7dc953c3 --- /dev/null +++ b/content/viewer/net/rtf.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RTF Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง RTF ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ RTF สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ RTF ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ RTF ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล RTF เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ RTF ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ RTF เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต RTF + string filePath = "input.rtf"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ RTF เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "RTF" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rtf.uk.md b/content/viewer/net/rtf.uk.md new file mode 100644 index 00000000..7d1cba43 --- /dev/null +++ b/content/viewer/net/rtf.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RTF Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення RTF у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів RTF для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу RTF у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу RTF у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити RTF у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл RTF із повним шляхом. + 3. Встановіть параметри для перетворення файлу RTF у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл RTF + string filePath = "input.rtf"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл RTF у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "RTF" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rtf.vi.md b/content/viewer/net/rtf.vi.md new file mode 100644 index 00000000..49fd53ec --- /dev/null +++ b/content/viewer/net/rtf.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET RTF - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị RTF trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp RTF dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp RTF trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp RTF trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị RTF thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp RTF với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp RTF thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp RTF đầu vào + string filePath = "input.rtf"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp RTF thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "RTF" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/rtf.zh.md b/content/viewer/net/rtf.zh.md new file mode 100644 index 00000000..92412392 --- /dev/null +++ b/content/viewer/net/rtf.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET RTF Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 RTF。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 RTF 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 RTF 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 RTF 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 RTF 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 RTF 文件。 + 3. 设置选项以将 RTF 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 RTF 文件 + string filePath = "input.rtf"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 RTF 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "RTF" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sass.de.md b/content/viewer/net/sass.de.md new file mode 100644 index 00000000..5d93ad8b --- /dev/null +++ b/content/viewer/net/sass.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SASS Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von SASS in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "SASS Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von SASS-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der SASS-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie SASS in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei SASS mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei SASS im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei SASS ein + string filePath = "input.sass"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei SASS mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "SASS" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sass.en.md b/content/viewer/net/sass.en.md new file mode 100644 index 00000000..c708484d --- /dev/null +++ b/content/viewer/net/sass.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SASS Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display SASS in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "SASS file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display SASS file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render SASS file in C#" + content: | + With GroupDocs.Viewer you can render SASS to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the SASS file with full path. + 3. Set options to render SASS file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input SASS file + string filePath = "input.sass"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render SASS file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "SASS" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sass.es.md b/content/viewer/net/sass.es.md new file mode 100644 index 00000000..88b2e931 --- /dev/null +++ b/content/viewer/net/sass.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SASS API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar SASS en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "SASS visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos SASS en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo SASS en C#" + content: | + Con GroupDocs.Viewer puede renderizar SASS a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo SASS con la ruta completa. + 3. Configure opciones para representar el archivo SASS en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada SASS + string filePath = "input.sass"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo SASS a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "SASS" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sass.fa.md b/content/viewer/net/sass.fa.md new file mode 100644 index 00000000..ad147305 --- /dev/null +++ b/content/viewer/net/sass.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SASS بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش SASS در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل SASS برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل SASS در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل SASS در C#" + content: | + با GroupDocs.Viewer می‌توانید SASS را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل SASS را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل SASS در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی SASS را تنظیم کنید + string filePath = "input.sass"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل SASS را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "SASS" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sass.fr.md b/content/viewer/net/sass.fr.md new file mode 100644 index 00000000..6b30ad2c --- /dev/null +++ b/content/viewer/net/sass.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET SASS - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher SASS dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "SASS visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier SASS dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier SASS dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer SASS au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier SASS avec le chemin complet. + 3. Définissez les options pour restituer le fichier SASS au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée SASS + string filePath = "input.sass"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier SASS au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "SASS" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sass.id.md b/content/viewer/net/sass.id.md new file mode 100644 index 00000000..7a3783da --- /dev/null +++ b/content/viewer/net/sass.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SASS Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan SASS di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "SASS penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file SASS dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file SASS di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender SASS ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file SASS dengan path lengkap. + 3. Tetapkan opsi untuk merender file SASS ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan SASS + string filePath = "input.sass"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file SASS ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "SASS" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sass.it.md b/content/viewer/net/sass.it.md new file mode 100644 index 00000000..87afae20 --- /dev/null +++ b/content/viewer/net/sass.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET SASS: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare SASS in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file SASS per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file SASS in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file SASS in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di SASS in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file SASS con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file SASS nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input SASS + string filePath = "input.sass"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file SASS in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "SASS" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sass.ja.md b/content/viewer/net/sass.ja.md new file mode 100644 index 00000000..540fc4f4 --- /dev/null +++ b/content/viewer/net/sass.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SASS ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで SASS を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の SASS ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで SASS ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で SASS ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で SASS を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、SASS ファイルをフルパスでロードします。 + 3. SASS ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 SASS ファイルを設定する + string filePath = "input.sass"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた SASS ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "SASS" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sass.ko.md b/content/viewer/net/sass.ko.md new file mode 100644 index 00000000..eb05199a --- /dev/null +++ b/content/viewer/net/sass.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SASS 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 SASS을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 SASS 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 SASS 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 SASS 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 SASS을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 SASS 파일을 로드합니다. + 3. SASS 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 SASS 파일 설정 + string filePath = "input.sass"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 SASS 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "SASS" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sass.pt.md b/content/viewer/net/sass.pt.md new file mode 100644 index 00000000..180eda3f --- /dev/null +++ b/content/viewer/net/sass.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SASS API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir SASS em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos SASS para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos SASS em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo SASS em C#" + content: | + Com GroupDocs.Viewer você pode renderizar SASS para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo SASS com caminho completo. + 3. Defina opções para renderizar o arquivo SASS em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada SASS + string filePath = "input.sass"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo SASS em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "SASS" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sass.ru.md b/content/viewer/net/sass.ru.md new file mode 100644 index 00000000..fa6b02c7 --- /dev/null +++ b/content/viewer/net/sass.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SASS API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения SASS в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "SASS средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла SASS в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла SASS в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать SASS в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл SASS с полным путем. + 3. Установите параметры для преобразования файла SASS в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл SASS + string filePath = "input.sass"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл SASS в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "SASS" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sass.th.md b/content/viewer/net/sass.th.md new file mode 100644 index 00000000..b6080417 --- /dev/null +++ b/content/viewer/net/sass.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SASS Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง SASS ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ SASS สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ SASS ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ SASS ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล SASS เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ SASS ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ SASS เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต SASS + string filePath = "input.sass"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ SASS เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "SASS" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sass.uk.md b/content/viewer/net/sass.uk.md new file mode 100644 index 00000000..a9733260 --- /dev/null +++ b/content/viewer/net/sass.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SASS Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення SASS у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів SASS для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу SASS у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу SASS у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити SASS у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл SASS із повним шляхом. + 3. Встановіть параметри для перетворення файлу SASS у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл SASS + string filePath = "input.sass"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл SASS у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "SASS" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sass.vi.md b/content/viewer/net/sass.vi.md new file mode 100644 index 00000000..da8f232d --- /dev/null +++ b/content/viewer/net/sass.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET SASS - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị SASS trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp SASS dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp SASS trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp SASS trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị SASS thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp SASS với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp SASS thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp SASS đầu vào + string filePath = "input.sass"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp SASS thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "SASS" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sass.zh.md b/content/viewer/net/sass.zh.md new file mode 100644 index 00000000..2a300ffb --- /dev/null +++ b/content/viewer/net/sass.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SASS Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 SASS。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 SASS 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 SASS 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 SASS 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 SASS 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 SASS 文件。 + 3. 设置选项以将 SASS 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 SASS 文件 + string filePath = "input.sass"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 SASS 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "SASS" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/scala.de.md b/content/viewer/net/scala.de.md new file mode 100644 index 00000000..46170398 --- /dev/null +++ b/content/viewer/net/scala.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCALA Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von SCALA in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "SCALA Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von SCALA-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der SCALA-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie SCALA in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei SCALA mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei SCALA im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei SCALA ein + string filePath = "input.scala"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei SCALA mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "SCALA" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/scala.en.md b/content/viewer/net/scala.en.md new file mode 100644 index 00000000..c2af1242 --- /dev/null +++ b/content/viewer/net/scala.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCALA Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display SCALA in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "SCALA file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display SCALA file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render SCALA file in C#" + content: | + With GroupDocs.Viewer you can render SCALA to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the SCALA file with full path. + 3. Set options to render SCALA file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input SCALA file + string filePath = "input.scala"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render SCALA file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "SCALA" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/scala.es.md b/content/viewer/net/scala.es.md new file mode 100644 index 00000000..b474c9c2 --- /dev/null +++ b/content/viewer/net/scala.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCALA API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar SCALA en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "SCALA visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos SCALA en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo SCALA en C#" + content: | + Con GroupDocs.Viewer puede renderizar SCALA a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo SCALA con la ruta completa. + 3. Configure opciones para representar el archivo SCALA en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada SCALA + string filePath = "input.scala"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo SCALA a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "SCALA" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/scala.fa.md b/content/viewer/net/scala.fa.md new file mode 100644 index 00000000..9e113b26 --- /dev/null +++ b/content/viewer/net/scala.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCALA بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش SCALA در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل SCALA برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل SCALA در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل SCALA در C#" + content: | + با GroupDocs.Viewer می‌توانید SCALA را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل SCALA را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل SCALA در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی SCALA را تنظیم کنید + string filePath = "input.scala"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل SCALA را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "SCALA" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/scala.fr.md b/content/viewer/net/scala.fr.md new file mode 100644 index 00000000..1b406b7b --- /dev/null +++ b/content/viewer/net/scala.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET SCALA - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher SCALA dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "SCALA visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier SCALA dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier SCALA dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer SCALA au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier SCALA avec le chemin complet. + 3. Définissez les options pour restituer le fichier SCALA au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée SCALA + string filePath = "input.scala"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier SCALA au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "SCALA" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/scala.id.md b/content/viewer/net/scala.id.md new file mode 100644 index 00000000..fcd5382c --- /dev/null +++ b/content/viewer/net/scala.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCALA Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan SCALA di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "SCALA penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file SCALA dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file SCALA di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender SCALA ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file SCALA dengan path lengkap. + 3. Tetapkan opsi untuk merender file SCALA ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan SCALA + string filePath = "input.scala"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file SCALA ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "SCALA" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/scala.it.md b/content/viewer/net/scala.it.md new file mode 100644 index 00000000..37f3f01f --- /dev/null +++ b/content/viewer/net/scala.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET SCALA: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare SCALA in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file SCALA per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file SCALA in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file SCALA in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di SCALA in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file SCALA con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file SCALA nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input SCALA + string filePath = "input.scala"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file SCALA in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "SCALA" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/scala.ja.md b/content/viewer/net/scala.ja.md new file mode 100644 index 00000000..0b672d61 --- /dev/null +++ b/content/viewer/net/scala.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCALA ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで SCALA を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の SCALA ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで SCALA ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で SCALA ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で SCALA を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、SCALA ファイルをフルパスでロードします。 + 3. SCALA ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 SCALA ファイルを設定する + string filePath = "input.scala"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた SCALA ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "SCALA" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/scala.ko.md b/content/viewer/net/scala.ko.md new file mode 100644 index 00000000..9411f2a5 --- /dev/null +++ b/content/viewer/net/scala.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCALA 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 SCALA을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 SCALA 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 SCALA 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 SCALA 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 SCALA을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 SCALA 파일을 로드합니다. + 3. SCALA 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 SCALA 파일 설정 + string filePath = "input.scala"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 SCALA 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "SCALA" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/scala.pt.md b/content/viewer/net/scala.pt.md new file mode 100644 index 00000000..f35b55b7 --- /dev/null +++ b/content/viewer/net/scala.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCALA API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir SCALA em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos SCALA para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos SCALA em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo SCALA em C#" + content: | + Com GroupDocs.Viewer você pode renderizar SCALA para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo SCALA com caminho completo. + 3. Defina opções para renderizar o arquivo SCALA em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada SCALA + string filePath = "input.scala"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo SCALA em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "SCALA" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/scala.ru.md b/content/viewer/net/scala.ru.md new file mode 100644 index 00000000..cab6aba9 --- /dev/null +++ b/content/viewer/net/scala.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCALA API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения SCALA в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "SCALA средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла SCALA в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла SCALA в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать SCALA в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл SCALA с полным путем. + 3. Установите параметры для преобразования файла SCALA в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл SCALA + string filePath = "input.scala"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл SCALA в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "SCALA" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/scala.th.md b/content/viewer/net/scala.th.md new file mode 100644 index 00000000..1e26370e --- /dev/null +++ b/content/viewer/net/scala.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCALA Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง SCALA ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ SCALA สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ SCALA ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ SCALA ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล SCALA เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ SCALA ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ SCALA เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต SCALA + string filePath = "input.scala"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ SCALA เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "SCALA" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/scala.uk.md b/content/viewer/net/scala.uk.md new file mode 100644 index 00000000..274bded2 --- /dev/null +++ b/content/viewer/net/scala.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCALA Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення SCALA у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів SCALA для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу SCALA у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу SCALA у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити SCALA у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл SCALA із повним шляхом. + 3. Встановіть параметри для перетворення файлу SCALA у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл SCALA + string filePath = "input.scala"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл SCALA у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "SCALA" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/scala.vi.md b/content/viewer/net/scala.vi.md new file mode 100644 index 00000000..75cf8d0e --- /dev/null +++ b/content/viewer/net/scala.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET SCALA - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị SCALA trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp SCALA dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp SCALA trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp SCALA trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị SCALA thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp SCALA với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp SCALA thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp SCALA đầu vào + string filePath = "input.scala"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp SCALA thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "SCALA" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/scala.zh.md b/content/viewer/net/scala.zh.md new file mode 100644 index 00000000..18875f6a --- /dev/null +++ b/content/viewer/net/scala.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCALA Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 SCALA。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 SCALA 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 SCALA 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 SCALA 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 SCALA 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 SCALA 文件。 + 3. 设置选项以将 SCALA 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 SCALA 文件 + string filePath = "input.scala"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 SCALA 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "SCALA" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/scm.de.md b/content/viewer/net/scm.de.md new file mode 100644 index 00000000..04d70e9f --- /dev/null +++ b/content/viewer/net/scm.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCM Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von SCM in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "SCM Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von SCM-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der SCM-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie SCM in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei SCM mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei SCM im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei SCM ein + string filePath = "input.scm"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei SCM mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "SCM" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/scm.en.md b/content/viewer/net/scm.en.md new file mode 100644 index 00000000..39168382 --- /dev/null +++ b/content/viewer/net/scm.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCM Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display SCM in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "SCM file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display SCM file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render SCM file in C#" + content: | + With GroupDocs.Viewer you can render SCM to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the SCM file with full path. + 3. Set options to render SCM file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input SCM file + string filePath = "input.scm"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render SCM file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "SCM" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/scm.es.md b/content/viewer/net/scm.es.md new file mode 100644 index 00000000..c4f00606 --- /dev/null +++ b/content/viewer/net/scm.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:51 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCM API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar SCM en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "SCM visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos SCM en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo SCM en C#" + content: | + Con GroupDocs.Viewer puede renderizar SCM a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo SCM con la ruta completa. + 3. Configure opciones para representar el archivo SCM en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada SCM + string filePath = "input.scm"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo SCM a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "SCM" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/scm.fa.md b/content/viewer/net/scm.fa.md new file mode 100644 index 00000000..c69a9545 --- /dev/null +++ b/content/viewer/net/scm.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCM بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش SCM در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل SCM برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل SCM در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل SCM در C#" + content: | + با GroupDocs.Viewer می‌توانید SCM را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل SCM را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل SCM در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی SCM را تنظیم کنید + string filePath = "input.scm"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل SCM را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "SCM" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/scm.fr.md b/content/viewer/net/scm.fr.md new file mode 100644 index 00000000..87968729 --- /dev/null +++ b/content/viewer/net/scm.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET SCM - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher SCM dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "SCM visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier SCM dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier SCM dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer SCM au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier SCM avec le chemin complet. + 3. Définissez les options pour restituer le fichier SCM au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée SCM + string filePath = "input.scm"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier SCM au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "SCM" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/scm.id.md b/content/viewer/net/scm.id.md new file mode 100644 index 00000000..3a754e5f --- /dev/null +++ b/content/viewer/net/scm.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCM Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan SCM di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "SCM penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file SCM dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file SCM di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender SCM ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file SCM dengan path lengkap. + 3. Tetapkan opsi untuk merender file SCM ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan SCM + string filePath = "input.scm"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file SCM ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "SCM" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/scm.it.md b/content/viewer/net/scm.it.md new file mode 100644 index 00000000..cca89ec1 --- /dev/null +++ b/content/viewer/net/scm.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET SCM: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare SCM in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file SCM per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file SCM in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file SCM in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di SCM in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file SCM con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file SCM nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input SCM + string filePath = "input.scm"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file SCM in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "SCM" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/scm.ja.md b/content/viewer/net/scm.ja.md new file mode 100644 index 00000000..2be16aeb --- /dev/null +++ b/content/viewer/net/scm.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCM ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで SCM を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の SCM ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで SCM ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で SCM ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で SCM を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、SCM ファイルをフルパスでロードします。 + 3. SCM ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 SCM ファイルを設定する + string filePath = "input.scm"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた SCM ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "SCM" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/scm.ko.md b/content/viewer/net/scm.ko.md new file mode 100644 index 00000000..9a171f25 --- /dev/null +++ b/content/viewer/net/scm.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCM 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 SCM을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 SCM 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 SCM 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 SCM 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 SCM을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 SCM 파일을 로드합니다. + 3. SCM 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 SCM 파일 설정 + string filePath = "input.scm"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 SCM 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "SCM" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/scm.pt.md b/content/viewer/net/scm.pt.md new file mode 100644 index 00000000..2bb06c1e --- /dev/null +++ b/content/viewer/net/scm.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCM API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir SCM em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos SCM para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos SCM em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo SCM em C#" + content: | + Com GroupDocs.Viewer você pode renderizar SCM para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo SCM com caminho completo. + 3. Defina opções para renderizar o arquivo SCM em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada SCM + string filePath = "input.scm"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo SCM em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "SCM" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/scm.ru.md b/content/viewer/net/scm.ru.md new file mode 100644 index 00000000..a78548e2 --- /dev/null +++ b/content/viewer/net/scm.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCM API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения SCM в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "SCM средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла SCM в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла SCM в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать SCM в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл SCM с полным путем. + 3. Установите параметры для преобразования файла SCM в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл SCM + string filePath = "input.scm"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл SCM в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "SCM" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/scm.th.md b/content/viewer/net/scm.th.md new file mode 100644 index 00000000..37964fba --- /dev/null +++ b/content/viewer/net/scm.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCM Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง SCM ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ SCM สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ SCM ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ SCM ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล SCM เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ SCM ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ SCM เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต SCM + string filePath = "input.scm"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ SCM เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "SCM" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/scm.uk.md b/content/viewer/net/scm.uk.md new file mode 100644 index 00000000..20283632 --- /dev/null +++ b/content/viewer/net/scm.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCM Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення SCM у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів SCM для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу SCM у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу SCM у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити SCM у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл SCM із повним шляхом. + 3. Встановіть параметри для перетворення файлу SCM у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл SCM + string filePath = "input.scm"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл SCM у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "SCM" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/scm.vi.md b/content/viewer/net/scm.vi.md new file mode 100644 index 00000000..c51ed62f --- /dev/null +++ b/content/viewer/net/scm.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET SCM - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị SCM trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp SCM dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp SCM trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp SCM trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị SCM thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp SCM với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp SCM thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp SCM đầu vào + string filePath = "input.scm"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp SCM thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "SCM" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/scm.zh.md b/content/viewer/net/scm.zh.md new file mode 100644 index 00000000..90466381 --- /dev/null +++ b/content/viewer/net/scm.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCM Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 SCM。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 SCM 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 SCM 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 SCM 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 SCM 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 SCM 文件。 + 3. 设置选项以将 SCM 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 SCM 文件 + string filePath = "input.scm"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 SCM 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "SCM" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/script.de.md b/content/viewer/net/script.de.md new file mode 100644 index 00000000..05883ad5 --- /dev/null +++ b/content/viewer/net/script.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCRIPT Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von SCRIPT in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "SCRIPT Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von SCRIPT-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der SCRIPT-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie SCRIPT in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei SCRIPT mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei SCRIPT im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei SCRIPT ein + string filePath = "input.script"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei SCRIPT mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "SCRIPT" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/script.en.md b/content/viewer/net/script.en.md new file mode 100644 index 00000000..649c4385 --- /dev/null +++ b/content/viewer/net/script.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCRIPT Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display SCRIPT in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "SCRIPT file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display SCRIPT file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render SCRIPT file in C#" + content: | + With GroupDocs.Viewer you can render SCRIPT to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the SCRIPT file with full path. + 3. Set options to render SCRIPT file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input SCRIPT file + string filePath = "input.script"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render SCRIPT file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "SCRIPT" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/script.es.md b/content/viewer/net/script.es.md new file mode 100644 index 00000000..6b09ce4b --- /dev/null +++ b/content/viewer/net/script.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCRIPT API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar SCRIPT en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "SCRIPT visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos SCRIPT en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo SCRIPT en C#" + content: | + Con GroupDocs.Viewer puede renderizar SCRIPT a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo SCRIPT con la ruta completa. + 3. Configure opciones para representar el archivo SCRIPT en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada SCRIPT + string filePath = "input.script"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo SCRIPT a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "SCRIPT" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/script.fa.md b/content/viewer/net/script.fa.md new file mode 100644 index 00000000..797388c3 --- /dev/null +++ b/content/viewer/net/script.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCRIPT بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش SCRIPT در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل SCRIPT برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل SCRIPT در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل SCRIPT در C#" + content: | + با GroupDocs.Viewer می‌توانید SCRIPT را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل SCRIPT را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل SCRIPT در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی SCRIPT را تنظیم کنید + string filePath = "input.script"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل SCRIPT را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "SCRIPT" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/script.fr.md b/content/viewer/net/script.fr.md new file mode 100644 index 00000000..4c0b0edb --- /dev/null +++ b/content/viewer/net/script.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET SCRIPT - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher SCRIPT dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "SCRIPT visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier SCRIPT dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier SCRIPT dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer SCRIPT au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier SCRIPT avec le chemin complet. + 3. Définissez les options pour restituer le fichier SCRIPT au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée SCRIPT + string filePath = "input.script"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier SCRIPT au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "SCRIPT" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/script.id.md b/content/viewer/net/script.id.md new file mode 100644 index 00000000..e1741420 --- /dev/null +++ b/content/viewer/net/script.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCRIPT Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan SCRIPT di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "SCRIPT penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file SCRIPT dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file SCRIPT di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender SCRIPT ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file SCRIPT dengan path lengkap. + 3. Tetapkan opsi untuk merender file SCRIPT ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan SCRIPT + string filePath = "input.script"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file SCRIPT ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "SCRIPT" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/script.it.md b/content/viewer/net/script.it.md new file mode 100644 index 00000000..d35a56a1 --- /dev/null +++ b/content/viewer/net/script.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET SCRIPT: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare SCRIPT in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file SCRIPT per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file SCRIPT in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file SCRIPT in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di SCRIPT in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file SCRIPT con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file SCRIPT nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input SCRIPT + string filePath = "input.script"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file SCRIPT in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "SCRIPT" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/script.ja.md b/content/viewer/net/script.ja.md new file mode 100644 index 00000000..2a0188ba --- /dev/null +++ b/content/viewer/net/script.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCRIPT ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで SCRIPT を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の SCRIPT ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで SCRIPT ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で SCRIPT ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で SCRIPT を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、SCRIPT ファイルをフルパスでロードします。 + 3. SCRIPT ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 SCRIPT ファイルを設定する + string filePath = "input.script"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた SCRIPT ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "SCRIPT" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/script.ko.md b/content/viewer/net/script.ko.md new file mode 100644 index 00000000..b60086c1 --- /dev/null +++ b/content/viewer/net/script.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCRIPT 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 SCRIPT을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 SCRIPT 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 SCRIPT 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 SCRIPT 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 SCRIPT을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 SCRIPT 파일을 로드합니다. + 3. SCRIPT 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 SCRIPT 파일 설정 + string filePath = "input.script"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 SCRIPT 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "SCRIPT" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/script.pt.md b/content/viewer/net/script.pt.md new file mode 100644 index 00000000..ee7b9e48 --- /dev/null +++ b/content/viewer/net/script.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCRIPT API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir SCRIPT em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos SCRIPT para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos SCRIPT em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo SCRIPT em C#" + content: | + Com GroupDocs.Viewer você pode renderizar SCRIPT para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo SCRIPT com caminho completo. + 3. Defina opções para renderizar o arquivo SCRIPT em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada SCRIPT + string filePath = "input.script"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo SCRIPT em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "SCRIPT" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/script.ru.md b/content/viewer/net/script.ru.md new file mode 100644 index 00000000..3800d0fe --- /dev/null +++ b/content/viewer/net/script.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCRIPT API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения SCRIPT в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "SCRIPT средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла SCRIPT в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла SCRIPT в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать SCRIPT в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл SCRIPT с полным путем. + 3. Установите параметры для преобразования файла SCRIPT в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл SCRIPT + string filePath = "input.script"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл SCRIPT в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "SCRIPT" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/script.th.md b/content/viewer/net/script.th.md new file mode 100644 index 00000000..9e0b4577 --- /dev/null +++ b/content/viewer/net/script.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCRIPT Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง SCRIPT ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ SCRIPT สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ SCRIPT ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ SCRIPT ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล SCRIPT เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ SCRIPT ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ SCRIPT เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต SCRIPT + string filePath = "input.script"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ SCRIPT เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "SCRIPT" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/script.uk.md b/content/viewer/net/script.uk.md new file mode 100644 index 00000000..9d793729 --- /dev/null +++ b/content/viewer/net/script.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCRIPT Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення SCRIPT у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів SCRIPT для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу SCRIPT у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу SCRIPT у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити SCRIPT у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл SCRIPT із повним шляхом. + 3. Встановіть параметри для перетворення файлу SCRIPT у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл SCRIPT + string filePath = "input.script"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл SCRIPT у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "SCRIPT" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/script.vi.md b/content/viewer/net/script.vi.md new file mode 100644 index 00000000..e9d7455c --- /dev/null +++ b/content/viewer/net/script.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET SCRIPT - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị SCRIPT trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp SCRIPT dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp SCRIPT trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp SCRIPT trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị SCRIPT thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp SCRIPT với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp SCRIPT thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp SCRIPT đầu vào + string filePath = "input.script"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp SCRIPT thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "SCRIPT" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/script.zh.md b/content/viewer/net/script.zh.md new file mode 100644 index 00000000..57493676 --- /dev/null +++ b/content/viewer/net/script.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SCRIPT Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 SCRIPT。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 SCRIPT 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 SCRIPT 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 SCRIPT 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 SCRIPT 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 SCRIPT 文件。 + 3. 设置选项以将 SCRIPT 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 SCRIPT 文件 + string filePath = "input.script"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 SCRIPT 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "SCRIPT" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sh.de.md b/content/viewer/net/sh.de.md new file mode 100644 index 00000000..49c704f3 --- /dev/null +++ b/content/viewer/net/sh.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SH Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von SH in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "SH Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von SH-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der SH-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie SH in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei SH mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei SH im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei SH ein + string filePath = "input.sh"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei SH mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "SH" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sh.en.md b/content/viewer/net/sh.en.md new file mode 100644 index 00000000..a4d4e8a1 --- /dev/null +++ b/content/viewer/net/sh.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SH Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display SH in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "SH file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display SH file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render SH file in C#" + content: | + With GroupDocs.Viewer you can render SH to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the SH file with full path. + 3. Set options to render SH file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input SH file + string filePath = "input.sh"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render SH file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "SH" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sh.es.md b/content/viewer/net/sh.es.md new file mode 100644 index 00000000..366f8296 --- /dev/null +++ b/content/viewer/net/sh.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SH API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar SH en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "SH visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos SH en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo SH en C#" + content: | + Con GroupDocs.Viewer puede renderizar SH a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo SH con la ruta completa. + 3. Configure opciones para representar el archivo SH en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada SH + string filePath = "input.sh"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo SH a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "SH" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sh.fa.md b/content/viewer/net/sh.fa.md new file mode 100644 index 00000000..6358c8dd --- /dev/null +++ b/content/viewer/net/sh.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SH بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش SH در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل SH برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل SH در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل SH در C#" + content: | + با GroupDocs.Viewer می‌توانید SH را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل SH را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل SH در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی SH را تنظیم کنید + string filePath = "input.sh"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل SH را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "SH" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sh.fr.md b/content/viewer/net/sh.fr.md new file mode 100644 index 00000000..42580e45 --- /dev/null +++ b/content/viewer/net/sh.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET SH - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher SH dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "SH visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier SH dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier SH dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer SH au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier SH avec le chemin complet. + 3. Définissez les options pour restituer le fichier SH au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée SH + string filePath = "input.sh"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier SH au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "SH" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sh.id.md b/content/viewer/net/sh.id.md new file mode 100644 index 00000000..90d61923 --- /dev/null +++ b/content/viewer/net/sh.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SH Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan SH di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "SH penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file SH dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file SH di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender SH ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file SH dengan path lengkap. + 3. Tetapkan opsi untuk merender file SH ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan SH + string filePath = "input.sh"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file SH ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "SH" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sh.it.md b/content/viewer/net/sh.it.md new file mode 100644 index 00000000..e9c5d279 --- /dev/null +++ b/content/viewer/net/sh.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET SH: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare SH in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file SH per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file SH in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file SH in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di SH in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file SH con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file SH nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input SH + string filePath = "input.sh"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file SH in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "SH" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sh.ja.md b/content/viewer/net/sh.ja.md new file mode 100644 index 00000000..1d4ff08b --- /dev/null +++ b/content/viewer/net/sh.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SH ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで SH を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の SH ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで SH ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で SH ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で SH を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、SH ファイルをフルパスでロードします。 + 3. SH ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 SH ファイルを設定する + string filePath = "input.sh"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた SH ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "SH" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sh.ko.md b/content/viewer/net/sh.ko.md new file mode 100644 index 00000000..1f8b51dd --- /dev/null +++ b/content/viewer/net/sh.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SH 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 SH을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 SH 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 SH 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 SH 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 SH을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 SH 파일을 로드합니다. + 3. SH 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 SH 파일 설정 + string filePath = "input.sh"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 SH 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "SH" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sh.pt.md b/content/viewer/net/sh.pt.md new file mode 100644 index 00000000..bc87bedf --- /dev/null +++ b/content/viewer/net/sh.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SH API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir SH em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos SH para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos SH em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo SH em C#" + content: | + Com GroupDocs.Viewer você pode renderizar SH para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo SH com caminho completo. + 3. Defina opções para renderizar o arquivo SH em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada SH + string filePath = "input.sh"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo SH em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "SH" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sh.ru.md b/content/viewer/net/sh.ru.md new file mode 100644 index 00000000..d2955f13 --- /dev/null +++ b/content/viewer/net/sh.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SH API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения SH в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "SH средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла SH в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла SH в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать SH в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл SH с полным путем. + 3. Установите параметры для преобразования файла SH в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл SH + string filePath = "input.sh"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл SH в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "SH" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sh.th.md b/content/viewer/net/sh.th.md new file mode 100644 index 00000000..66a55bfe --- /dev/null +++ b/content/viewer/net/sh.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SH Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง SH ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ SH สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ SH ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ SH ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล SH เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ SH ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ SH เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต SH + string filePath = "input.sh"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ SH เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "SH" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sh.uk.md b/content/viewer/net/sh.uk.md new file mode 100644 index 00000000..9e887e02 --- /dev/null +++ b/content/viewer/net/sh.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SH Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення SH у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів SH для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу SH у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу SH у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити SH у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл SH із повним шляхом. + 3. Встановіть параметри для перетворення файлу SH у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл SH + string filePath = "input.sh"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл SH у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "SH" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sh.vi.md b/content/viewer/net/sh.vi.md new file mode 100644 index 00000000..eb0ae930 --- /dev/null +++ b/content/viewer/net/sh.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET SH - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị SH trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp SH dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp SH trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp SH trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị SH thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp SH với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp SH thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp SH đầu vào + string filePath = "input.sh"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp SH thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "SH" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sh.zh.md b/content/viewer/net/sh.zh.md new file mode 100644 index 00000000..1974970e --- /dev/null +++ b/content/viewer/net/sh.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SH Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 SH。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 SH 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 SH 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 SH 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 SH 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 SH 文件。 + 3. 设置选项以将 SH 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 SH 文件 + string filePath = "input.sh"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 SH 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "SH" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sml.de.md b/content/viewer/net/sml.de.md new file mode 100644 index 00000000..a87a5bba --- /dev/null +++ b/content/viewer/net/sml.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SML Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von SML in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "SML Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von SML-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der SML-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie SML in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei SML mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei SML im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei SML ein + string filePath = "input.sml"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei SML mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "SML" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sml.en.md b/content/viewer/net/sml.en.md new file mode 100644 index 00000000..10e4b4d4 --- /dev/null +++ b/content/viewer/net/sml.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SML Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display SML in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "SML file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display SML file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render SML file in C#" + content: | + With GroupDocs.Viewer you can render SML to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the SML file with full path. + 3. Set options to render SML file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input SML file + string filePath = "input.sml"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render SML file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "SML" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sml.es.md b/content/viewer/net/sml.es.md new file mode 100644 index 00000000..61c58aaa --- /dev/null +++ b/content/viewer/net/sml.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SML API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar SML en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "SML visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos SML en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo SML en C#" + content: | + Con GroupDocs.Viewer puede renderizar SML a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo SML con la ruta completa. + 3. Configure opciones para representar el archivo SML en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada SML + string filePath = "input.sml"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo SML a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "SML" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sml.fa.md b/content/viewer/net/sml.fa.md new file mode 100644 index 00000000..04c09a00 --- /dev/null +++ b/content/viewer/net/sml.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SML بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش SML در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل SML برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل SML در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل SML در C#" + content: | + با GroupDocs.Viewer می‌توانید SML را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل SML را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل SML در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی SML را تنظیم کنید + string filePath = "input.sml"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل SML را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "SML" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sml.fr.md b/content/viewer/net/sml.fr.md new file mode 100644 index 00000000..177cf0b2 --- /dev/null +++ b/content/viewer/net/sml.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET SML - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher SML dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "SML visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier SML dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier SML dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer SML au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier SML avec le chemin complet. + 3. Définissez les options pour restituer le fichier SML au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée SML + string filePath = "input.sml"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier SML au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "SML" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sml.id.md b/content/viewer/net/sml.id.md new file mode 100644 index 00000000..4afa7140 --- /dev/null +++ b/content/viewer/net/sml.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SML Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan SML di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "SML penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file SML dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file SML di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender SML ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file SML dengan path lengkap. + 3. Tetapkan opsi untuk merender file SML ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan SML + string filePath = "input.sml"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file SML ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "SML" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sml.it.md b/content/viewer/net/sml.it.md new file mode 100644 index 00000000..0afbfb91 --- /dev/null +++ b/content/viewer/net/sml.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET SML: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare SML in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file SML per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file SML in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file SML in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di SML in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file SML con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file SML nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input SML + string filePath = "input.sml"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file SML in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "SML" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sml.ja.md b/content/viewer/net/sml.ja.md new file mode 100644 index 00000000..644c0a80 --- /dev/null +++ b/content/viewer/net/sml.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SML ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで SML を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の SML ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで SML ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で SML ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で SML を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、SML ファイルをフルパスでロードします。 + 3. SML ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 SML ファイルを設定する + string filePath = "input.sml"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた SML ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "SML" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sml.ko.md b/content/viewer/net/sml.ko.md new file mode 100644 index 00000000..5777f773 --- /dev/null +++ b/content/viewer/net/sml.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SML 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 SML을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 SML 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 SML 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 SML 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 SML을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 SML 파일을 로드합니다. + 3. SML 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 SML 파일 설정 + string filePath = "input.sml"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 SML 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "SML" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sml.pt.md b/content/viewer/net/sml.pt.md new file mode 100644 index 00000000..51c9b4da --- /dev/null +++ b/content/viewer/net/sml.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SML API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir SML em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos SML para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos SML em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo SML em C#" + content: | + Com GroupDocs.Viewer você pode renderizar SML para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo SML com caminho completo. + 3. Defina opções para renderizar o arquivo SML em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada SML + string filePath = "input.sml"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo SML em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "SML" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sml.ru.md b/content/viewer/net/sml.ru.md new file mode 100644 index 00000000..72550a8e --- /dev/null +++ b/content/viewer/net/sml.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SML API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения SML в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "SML средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла SML в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла SML в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать SML в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл SML с полным путем. + 3. Установите параметры для преобразования файла SML в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл SML + string filePath = "input.sml"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл SML в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "SML" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sml.th.md b/content/viewer/net/sml.th.md new file mode 100644 index 00000000..292e682b --- /dev/null +++ b/content/viewer/net/sml.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SML Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง SML ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ SML สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ SML ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ SML ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล SML เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ SML ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ SML เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต SML + string filePath = "input.sml"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ SML เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "SML" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sml.uk.md b/content/viewer/net/sml.uk.md new file mode 100644 index 00000000..cdade72f --- /dev/null +++ b/content/viewer/net/sml.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SML Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення SML у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів SML для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу SML у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу SML у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити SML у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл SML із повним шляхом. + 3. Встановіть параметри для перетворення файлу SML у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл SML + string filePath = "input.sml"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл SML у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "SML" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sml.vi.md b/content/viewer/net/sml.vi.md new file mode 100644 index 00000000..e2411a63 --- /dev/null +++ b/content/viewer/net/sml.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET SML - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị SML trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp SML dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp SML trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp SML trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị SML thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp SML với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp SML thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp SML đầu vào + string filePath = "input.sml"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp SML thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "SML" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sml.zh.md b/content/viewer/net/sml.zh.md new file mode 100644 index 00000000..14b860b9 --- /dev/null +++ b/content/viewer/net/sml.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SML Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 SML。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 SML 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 SML 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 SML 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 SML 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 SML 文件。 + 3. 设置选项以将 SML 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 SML 文件 + string filePath = "input.sml"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 SML 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "SML" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/spreadsheet.de.md b/content/viewer/net/spreadsheet.de.md new file mode 100644 index 00000000..27c6ff9e --- /dev/null +++ b/content/viewer/net/spreadsheet.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Spreadsheet Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von Spreadsheet in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "Spreadsheet Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von Spreadsheet-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der Spreadsheet-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie Spreadsheet in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei Spreadsheet mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei Spreadsheet im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei Spreadsheet ein + string filePath = "input.xlsx"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei Spreadsheet mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "Spreadsheet" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/spreadsheet.en.md b/content/viewer/net/spreadsheet.en.md new file mode 100644 index 00000000..531c4d51 --- /dev/null +++ b/content/viewer/net/spreadsheet.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Spreadsheet Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display Spreadsheet in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "Spreadsheet file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display Spreadsheet file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render Spreadsheet file in C#" + content: | + With GroupDocs.Viewer you can render Spreadsheet to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the Spreadsheet file with full path. + 3. Set options to render Spreadsheet file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input Spreadsheet file + string filePath = "input.xlsx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render Spreadsheet file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "Spreadsheet" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/spreadsheet.es.md b/content/viewer/net/spreadsheet.es.md new file mode 100644 index 00000000..acae2f65 --- /dev/null +++ b/content/viewer/net/spreadsheet.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Spreadsheet API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar Spreadsheet en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "Spreadsheet visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos Spreadsheet en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo Spreadsheet en C#" + content: | + Con GroupDocs.Viewer puede renderizar Spreadsheet a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo Spreadsheet con la ruta completa. + 3. Configure opciones para representar el archivo Spreadsheet en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada Spreadsheet + string filePath = "input.xlsx"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo Spreadsheet a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "Spreadsheet" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/spreadsheet.fa.md b/content/viewer/net/spreadsheet.fa.md new file mode 100644 index 00000000..c6daead0 --- /dev/null +++ b/content/viewer/net/spreadsheet.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Spreadsheet بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش Spreadsheet در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل Spreadsheet برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل Spreadsheet در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل Spreadsheet در C#" + content: | + با GroupDocs.Viewer می‌توانید Spreadsheet را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل Spreadsheet را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل Spreadsheet در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی Spreadsheet را تنظیم کنید + string filePath = "input.xlsx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل Spreadsheet را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "Spreadsheet" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/spreadsheet.fr.md b/content/viewer/net/spreadsheet.fr.md new file mode 100644 index 00000000..698ccc76 --- /dev/null +++ b/content/viewer/net/spreadsheet.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET Spreadsheet - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher Spreadsheet dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "Spreadsheet visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier Spreadsheet dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier Spreadsheet dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer Spreadsheet au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier Spreadsheet avec le chemin complet. + 3. Définissez les options pour restituer le fichier Spreadsheet au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée Spreadsheet + string filePath = "input.xlsx"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier Spreadsheet au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "Spreadsheet" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/spreadsheet.id.md b/content/viewer/net/spreadsheet.id.md new file mode 100644 index 00000000..70f58b40 --- /dev/null +++ b/content/viewer/net/spreadsheet.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Spreadsheet Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan Spreadsheet di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Spreadsheet penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file Spreadsheet dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file Spreadsheet di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender Spreadsheet ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file Spreadsheet dengan path lengkap. + 3. Tetapkan opsi untuk merender file Spreadsheet ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan Spreadsheet + string filePath = "input.xlsx"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file Spreadsheet ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "Spreadsheet" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/spreadsheet.it.md b/content/viewer/net/spreadsheet.it.md new file mode 100644 index 00000000..90612c8a --- /dev/null +++ b/content/viewer/net/spreadsheet.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET Spreadsheet: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare Spreadsheet in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file Spreadsheet per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file Spreadsheet in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file Spreadsheet in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di Spreadsheet in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file Spreadsheet con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file Spreadsheet nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input Spreadsheet + string filePath = "input.xlsx"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file Spreadsheet in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "Spreadsheet" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/spreadsheet.ja.md b/content/viewer/net/spreadsheet.ja.md new file mode 100644 index 00000000..e505bd60 --- /dev/null +++ b/content/viewer/net/spreadsheet.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Spreadsheet ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで Spreadsheet を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の Spreadsheet ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで Spreadsheet ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で Spreadsheet ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で Spreadsheet を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、Spreadsheet ファイルをフルパスでロードします。 + 3. Spreadsheet ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 Spreadsheet ファイルを設定する + string filePath = "input.xlsx"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた Spreadsheet ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "Spreadsheet" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/spreadsheet.ko.md b/content/viewer/net/spreadsheet.ko.md new file mode 100644 index 00000000..1c9212db --- /dev/null +++ b/content/viewer/net/spreadsheet.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Spreadsheet 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 Spreadsheet을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 Spreadsheet 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 Spreadsheet 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 Spreadsheet 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 Spreadsheet을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 Spreadsheet 파일을 로드합니다. + 3. Spreadsheet 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 Spreadsheet 파일 설정 + string filePath = "input.xlsx"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 Spreadsheet 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "Spreadsheet" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/spreadsheet.pt.md b/content/viewer/net/spreadsheet.pt.md new file mode 100644 index 00000000..fc56c489 --- /dev/null +++ b/content/viewer/net/spreadsheet.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Spreadsheet API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir Spreadsheet em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos Spreadsheet para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos Spreadsheet em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo Spreadsheet em C#" + content: | + Com GroupDocs.Viewer você pode renderizar Spreadsheet para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo Spreadsheet com caminho completo. + 3. Defina opções para renderizar o arquivo Spreadsheet em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada Spreadsheet + string filePath = "input.xlsx"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo Spreadsheet em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "Spreadsheet" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/spreadsheet.ru.md b/content/viewer/net/spreadsheet.ru.md new file mode 100644 index 00000000..e0892375 --- /dev/null +++ b/content/viewer/net/spreadsheet.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Spreadsheet API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения Spreadsheet в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "Spreadsheet средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла Spreadsheet в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла Spreadsheet в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать Spreadsheet в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл Spreadsheet с полным путем. + 3. Установите параметры для преобразования файла Spreadsheet в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл Spreadsheet + string filePath = "input.xlsx"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл Spreadsheet в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "Spreadsheet" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/spreadsheet.th.md b/content/viewer/net/spreadsheet.th.md new file mode 100644 index 00000000..d3ac90fe --- /dev/null +++ b/content/viewer/net/spreadsheet.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Spreadsheet Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง Spreadsheet ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ Spreadsheet สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ Spreadsheet ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ Spreadsheet ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล Spreadsheet เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ Spreadsheet ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ Spreadsheet เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต Spreadsheet + string filePath = "input.xlsx"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ Spreadsheet เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "Spreadsheet" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/spreadsheet.uk.md b/content/viewer/net/spreadsheet.uk.md new file mode 100644 index 00000000..bb5ce07c --- /dev/null +++ b/content/viewer/net/spreadsheet.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Spreadsheet Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення Spreadsheet у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів Spreadsheet для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу Spreadsheet у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу Spreadsheet у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити Spreadsheet у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл Spreadsheet із повним шляхом. + 3. Встановіть параметри для перетворення файлу Spreadsheet у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл Spreadsheet + string filePath = "input.xlsx"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл Spreadsheet у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "Spreadsheet" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/spreadsheet.vi.md b/content/viewer/net/spreadsheet.vi.md new file mode 100644 index 00000000..30fc07de --- /dev/null +++ b/content/viewer/net/spreadsheet.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET Spreadsheet - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị Spreadsheet trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp Spreadsheet dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp Spreadsheet trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp Spreadsheet trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị Spreadsheet thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp Spreadsheet với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp Spreadsheet thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp Spreadsheet đầu vào + string filePath = "input.xlsx"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp Spreadsheet thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "Spreadsheet" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/spreadsheet.zh.md b/content/viewer/net/spreadsheet.zh.md new file mode 100644 index 00000000..173d7145 --- /dev/null +++ b/content/viewer/net/spreadsheet.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Spreadsheet Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 Spreadsheet。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 Spreadsheet 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 Spreadsheet 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 Spreadsheet 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 Spreadsheet 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 Spreadsheet 文件。 + 3. 设置选项以将 Spreadsheet 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 Spreadsheet 文件 + string filePath = "input.xlsx"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 Spreadsheet 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "Spreadsheet" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sql.de.md b/content/viewer/net/sql.de.md new file mode 100644 index 00000000..aa1bb9b3 --- /dev/null +++ b/content/viewer/net/sql.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SQL Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von SQL in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "SQL Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von SQL-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der SQL-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie SQL in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei SQL mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei SQL im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei SQL ein + string filePath = "input.sql"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei SQL mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "SQL" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sql.en.md b/content/viewer/net/sql.en.md new file mode 100644 index 00000000..b2057a6e --- /dev/null +++ b/content/viewer/net/sql.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SQL Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display SQL in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "SQL file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display SQL file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render SQL file in C#" + content: | + With GroupDocs.Viewer you can render SQL to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the SQL file with full path. + 3. Set options to render SQL file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input SQL file + string filePath = "input.sql"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render SQL file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "SQL" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sql.es.md b/content/viewer/net/sql.es.md new file mode 100644 index 00000000..67edfb34 --- /dev/null +++ b/content/viewer/net/sql.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SQL API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar SQL en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "SQL visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos SQL en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo SQL en C#" + content: | + Con GroupDocs.Viewer puede renderizar SQL a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo SQL con la ruta completa. + 3. Configure opciones para representar el archivo SQL en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada SQL + string filePath = "input.sql"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo SQL a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "SQL" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sql.fa.md b/content/viewer/net/sql.fa.md new file mode 100644 index 00000000..4944f221 --- /dev/null +++ b/content/viewer/net/sql.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SQL بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش SQL در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل SQL برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل SQL در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل SQL در C#" + content: | + با GroupDocs.Viewer می‌توانید SQL را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل SQL را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل SQL در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی SQL را تنظیم کنید + string filePath = "input.sql"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل SQL را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "SQL" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sql.fr.md b/content/viewer/net/sql.fr.md new file mode 100644 index 00000000..0ec2ac42 --- /dev/null +++ b/content/viewer/net/sql.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET SQL - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher SQL dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "SQL visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier SQL dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier SQL dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer SQL au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier SQL avec le chemin complet. + 3. Définissez les options pour restituer le fichier SQL au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée SQL + string filePath = "input.sql"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier SQL au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "SQL" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sql.id.md b/content/viewer/net/sql.id.md new file mode 100644 index 00000000..9beed784 --- /dev/null +++ b/content/viewer/net/sql.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SQL Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan SQL di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "SQL penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file SQL dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file SQL di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender SQL ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file SQL dengan path lengkap. + 3. Tetapkan opsi untuk merender file SQL ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan SQL + string filePath = "input.sql"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file SQL ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "SQL" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sql.it.md b/content/viewer/net/sql.it.md new file mode 100644 index 00000000..620c8bb2 --- /dev/null +++ b/content/viewer/net/sql.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET SQL: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare SQL in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file SQL per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file SQL in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file SQL in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di SQL in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file SQL con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file SQL nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input SQL + string filePath = "input.sql"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file SQL in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "SQL" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sql.ja.md b/content/viewer/net/sql.ja.md new file mode 100644 index 00000000..cda0f0b2 --- /dev/null +++ b/content/viewer/net/sql.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SQL ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで SQL を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の SQL ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで SQL ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で SQL ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で SQL を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、SQL ファイルをフルパスでロードします。 + 3. SQL ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 SQL ファイルを設定する + string filePath = "input.sql"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた SQL ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "SQL" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sql.ko.md b/content/viewer/net/sql.ko.md new file mode 100644 index 00000000..1219e1cb --- /dev/null +++ b/content/viewer/net/sql.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SQL 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 SQL을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 SQL 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 SQL 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 SQL 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 SQL을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 SQL 파일을 로드합니다. + 3. SQL 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 SQL 파일 설정 + string filePath = "input.sql"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 SQL 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "SQL" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sql.pt.md b/content/viewer/net/sql.pt.md new file mode 100644 index 00000000..82810643 --- /dev/null +++ b/content/viewer/net/sql.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SQL API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir SQL em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos SQL para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos SQL em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo SQL em C#" + content: | + Com GroupDocs.Viewer você pode renderizar SQL para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo SQL com caminho completo. + 3. Defina opções para renderizar o arquivo SQL em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada SQL + string filePath = "input.sql"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo SQL em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "SQL" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sql.ru.md b/content/viewer/net/sql.ru.md new file mode 100644 index 00000000..d51f7521 --- /dev/null +++ b/content/viewer/net/sql.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SQL API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения SQL в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "SQL средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла SQL в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла SQL в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать SQL в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл SQL с полным путем. + 3. Установите параметры для преобразования файла SQL в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл SQL + string filePath = "input.sql"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл SQL в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "SQL" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sql.th.md b/content/viewer/net/sql.th.md new file mode 100644 index 00000000..28a3b338 --- /dev/null +++ b/content/viewer/net/sql.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SQL Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง SQL ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ SQL สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ SQL ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ SQL ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล SQL เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ SQL ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ SQL เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต SQL + string filePath = "input.sql"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ SQL เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "SQL" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sql.uk.md b/content/viewer/net/sql.uk.md new file mode 100644 index 00000000..43850dda --- /dev/null +++ b/content/viewer/net/sql.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SQL Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення SQL у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів SQL для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу SQL у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу SQL у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити SQL у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл SQL із повним шляхом. + 3. Встановіть параметри для перетворення файлу SQL у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл SQL + string filePath = "input.sql"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл SQL у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "SQL" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sql.vi.md b/content/viewer/net/sql.vi.md new file mode 100644 index 00000000..46214ac7 --- /dev/null +++ b/content/viewer/net/sql.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET SQL - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị SQL trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp SQL dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp SQL trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp SQL trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị SQL thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp SQL với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp SQL thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp SQL đầu vào + string filePath = "input.sql"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp SQL thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "SQL" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sql.zh.md b/content/viewer/net/sql.zh.md new file mode 100644 index 00000000..e7db154f --- /dev/null +++ b/content/viewer/net/sql.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SQL Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 SQL。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 SQL 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 SQL 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 SQL 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 SQL 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 SQL 文件。 + 3. 设置选项以将 SQL 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 SQL 文件 + string filePath = "input.sql"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 SQL 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "SQL" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/stl.de.md b/content/viewer/net/stl.de.md new file mode 100644 index 00000000..c5aa51d3 --- /dev/null +++ b/content/viewer/net/stl.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET STL Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von STL in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "STL Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von STL-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der STL-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie STL in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei STL mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei STL im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei STL ein + string filePath = "input.stl"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei STL mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "STL" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/stl.en.md b/content/viewer/net/stl.en.md new file mode 100644 index 00000000..457aaaf9 --- /dev/null +++ b/content/viewer/net/stl.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET STL Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display STL in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "STL file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display STL file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render STL file in C#" + content: | + With GroupDocs.Viewer you can render STL to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the STL file with full path. + 3. Set options to render STL file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input STL file + string filePath = "input.stl"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render STL file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "STL" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/stl.es.md b/content/viewer/net/stl.es.md new file mode 100644 index 00000000..1390b217 --- /dev/null +++ b/content/viewer/net/stl.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET STL API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar STL en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "STL visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos STL en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo STL en C#" + content: | + Con GroupDocs.Viewer puede renderizar STL a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo STL con la ruta completa. + 3. Configure opciones para representar el archivo STL en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada STL + string filePath = "input.stl"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo STL a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "STL" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/stl.fa.md b/content/viewer/net/stl.fa.md new file mode 100644 index 00000000..e1484bd1 --- /dev/null +++ b/content/viewer/net/stl.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET STL بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش STL در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل STL برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل STL در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل STL در C#" + content: | + با GroupDocs.Viewer می‌توانید STL را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل STL را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل STL در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی STL را تنظیم کنید + string filePath = "input.stl"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل STL را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "STL" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/stl.fr.md b/content/viewer/net/stl.fr.md new file mode 100644 index 00000000..2ceacd64 --- /dev/null +++ b/content/viewer/net/stl.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET STL - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher STL dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "STL visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier STL dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier STL dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer STL au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier STL avec le chemin complet. + 3. Définissez les options pour restituer le fichier STL au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée STL + string filePath = "input.stl"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier STL au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "STL" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/stl.id.md b/content/viewer/net/stl.id.md new file mode 100644 index 00000000..7004a9e1 --- /dev/null +++ b/content/viewer/net/stl.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET STL Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan STL di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "STL penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file STL dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file STL di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender STL ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file STL dengan path lengkap. + 3. Tetapkan opsi untuk merender file STL ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan STL + string filePath = "input.stl"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file STL ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "STL" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/stl.it.md b/content/viewer/net/stl.it.md new file mode 100644 index 00000000..caf0d176 --- /dev/null +++ b/content/viewer/net/stl.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET STL: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare STL in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file STL per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file STL in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file STL in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di STL in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file STL con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file STL nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input STL + string filePath = "input.stl"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file STL in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "STL" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/stl.ja.md b/content/viewer/net/stl.ja.md new file mode 100644 index 00000000..20ca340e --- /dev/null +++ b/content/viewer/net/stl.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET STL ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで STL を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の STL ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで STL ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で STL ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で STL を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、STL ファイルをフルパスでロードします。 + 3. STL ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 STL ファイルを設定する + string filePath = "input.stl"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた STL ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "STL" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/stl.ko.md b/content/viewer/net/stl.ko.md new file mode 100644 index 00000000..11806c61 --- /dev/null +++ b/content/viewer/net/stl.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET STL 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 STL을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 STL 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 STL 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 STL 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 STL을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 STL 파일을 로드합니다. + 3. STL 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 STL 파일 설정 + string filePath = "input.stl"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 STL 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "STL" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/stl.pt.md b/content/viewer/net/stl.pt.md new file mode 100644 index 00000000..406ff448 --- /dev/null +++ b/content/viewer/net/stl.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET STL API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir STL em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos STL para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos STL em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo STL em C#" + content: | + Com GroupDocs.Viewer você pode renderizar STL para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo STL com caminho completo. + 3. Defina opções para renderizar o arquivo STL em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada STL + string filePath = "input.stl"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo STL em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "STL" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/stl.ru.md b/content/viewer/net/stl.ru.md new file mode 100644 index 00000000..7af8e1de --- /dev/null +++ b/content/viewer/net/stl.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET STL API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения STL в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "STL средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла STL в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла STL в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать STL в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл STL с полным путем. + 3. Установите параметры для преобразования файла STL в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл STL + string filePath = "input.stl"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл STL в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "STL" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/stl.th.md b/content/viewer/net/stl.th.md new file mode 100644 index 00000000..2f0beb3d --- /dev/null +++ b/content/viewer/net/stl.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET STL Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง STL ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ STL สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ STL ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ STL ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล STL เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ STL ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ STL เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต STL + string filePath = "input.stl"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ STL เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "STL" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/stl.uk.md b/content/viewer/net/stl.uk.md new file mode 100644 index 00000000..f24735aa --- /dev/null +++ b/content/viewer/net/stl.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET STL Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення STL у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів STL для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу STL у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу STL у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити STL у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл STL із повним шляхом. + 3. Встановіть параметри для перетворення файлу STL у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл STL + string filePath = "input.stl"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл STL у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "STL" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/stl.vi.md b/content/viewer/net/stl.vi.md new file mode 100644 index 00000000..2b5a02d0 --- /dev/null +++ b/content/viewer/net/stl.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET STL - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị STL trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp STL dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp STL trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp STL trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị STL thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp STL với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp STL thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp STL đầu vào + string filePath = "input.stl"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp STL thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "STL" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/stl.zh.md b/content/viewer/net/stl.zh.md new file mode 100644 index 00000000..8e76dc2b --- /dev/null +++ b/content/viewer/net/stl.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET STL Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 STL。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 STL 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 STL 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 STL 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 STL 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 STL 文件。 + 3. 设置选项以将 STL 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 STL 文件 + string filePath = "input.stl"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 STL 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "STL" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/svg.de.md b/content/viewer/net/svg.de.md new file mode 100644 index 00000000..0a1c1d02 --- /dev/null +++ b/content/viewer/net/svg.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SVG Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von SVG in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "SVG Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von SVG-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der SVG-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie SVG in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei SVG mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei SVG im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei SVG ein + string filePath = "input.svg"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei SVG mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "SVG" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/svg.en.md b/content/viewer/net/svg.en.md new file mode 100644 index 00000000..23de0208 --- /dev/null +++ b/content/viewer/net/svg.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SVG Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display SVG in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "SVG file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display SVG file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render SVG file in C#" + content: | + With GroupDocs.Viewer you can render SVG to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the SVG file with full path. + 3. Set options to render SVG file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input SVG file + string filePath = "input.svg"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render SVG file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "SVG" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/svg.es.md b/content/viewer/net/svg.es.md new file mode 100644 index 00000000..484053a3 --- /dev/null +++ b/content/viewer/net/svg.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SVG API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar SVG en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "SVG visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos SVG en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo SVG en C#" + content: | + Con GroupDocs.Viewer puede renderizar SVG a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo SVG con la ruta completa. + 3. Configure opciones para representar el archivo SVG en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada SVG + string filePath = "input.svg"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo SVG a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "SVG" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/svg.fa.md b/content/viewer/net/svg.fa.md new file mode 100644 index 00000000..51aec4ed --- /dev/null +++ b/content/viewer/net/svg.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SVG بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش SVG در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل SVG برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل SVG در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل SVG در C#" + content: | + با GroupDocs.Viewer می‌توانید SVG را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل SVG را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل SVG در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی SVG را تنظیم کنید + string filePath = "input.svg"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل SVG را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "SVG" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/svg.fr.md b/content/viewer/net/svg.fr.md new file mode 100644 index 00000000..e2e4efab --- /dev/null +++ b/content/viewer/net/svg.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET SVG - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher SVG dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "SVG visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier SVG dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier SVG dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer SVG au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier SVG avec le chemin complet. + 3. Définissez les options pour restituer le fichier SVG au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée SVG + string filePath = "input.svg"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier SVG au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "SVG" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/svg.id.md b/content/viewer/net/svg.id.md new file mode 100644 index 00000000..73b95f26 --- /dev/null +++ b/content/viewer/net/svg.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SVG Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan SVG di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "SVG penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file SVG dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file SVG di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender SVG ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file SVG dengan path lengkap. + 3. Tetapkan opsi untuk merender file SVG ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan SVG + string filePath = "input.svg"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file SVG ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "SVG" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/svg.it.md b/content/viewer/net/svg.it.md new file mode 100644 index 00000000..f90a96c0 --- /dev/null +++ b/content/viewer/net/svg.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET SVG: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare SVG in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file SVG per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file SVG in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file SVG in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di SVG in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file SVG con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file SVG nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input SVG + string filePath = "input.svg"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file SVG in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "SVG" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/svg.ja.md b/content/viewer/net/svg.ja.md new file mode 100644 index 00000000..84a85da2 --- /dev/null +++ b/content/viewer/net/svg.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SVG ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで SVG を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の SVG ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで SVG ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で SVG ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で SVG を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、SVG ファイルをフルパスでロードします。 + 3. SVG ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 SVG ファイルを設定する + string filePath = "input.svg"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた SVG ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "SVG" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/svg.ko.md b/content/viewer/net/svg.ko.md new file mode 100644 index 00000000..5e62a3db --- /dev/null +++ b/content/viewer/net/svg.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SVG 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 SVG을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 SVG 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 SVG 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 SVG 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 SVG을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 SVG 파일을 로드합니다. + 3. SVG 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 SVG 파일 설정 + string filePath = "input.svg"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 SVG 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "SVG" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/svg.pt.md b/content/viewer/net/svg.pt.md new file mode 100644 index 00000000..30c43b2b --- /dev/null +++ b/content/viewer/net/svg.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SVG API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir SVG em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos SVG para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos SVG em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo SVG em C#" + content: | + Com GroupDocs.Viewer você pode renderizar SVG para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo SVG com caminho completo. + 3. Defina opções para renderizar o arquivo SVG em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada SVG + string filePath = "input.svg"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo SVG em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "SVG" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/svg.ru.md b/content/viewer/net/svg.ru.md new file mode 100644 index 00000000..f4b16c7e --- /dev/null +++ b/content/viewer/net/svg.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SVG API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения SVG в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "SVG средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла SVG в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла SVG в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать SVG в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл SVG с полным путем. + 3. Установите параметры для преобразования файла SVG в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл SVG + string filePath = "input.svg"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл SVG в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "SVG" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/svg.th.md b/content/viewer/net/svg.th.md new file mode 100644 index 00000000..75fc4507 --- /dev/null +++ b/content/viewer/net/svg.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SVG Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง SVG ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ SVG สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ SVG ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ SVG ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล SVG เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ SVG ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ SVG เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต SVG + string filePath = "input.svg"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ SVG เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "SVG" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/svg.uk.md b/content/viewer/net/svg.uk.md new file mode 100644 index 00000000..b711f8a9 --- /dev/null +++ b/content/viewer/net/svg.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SVG Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення SVG у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів SVG для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу SVG у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу SVG у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити SVG у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл SVG із повним шляхом. + 3. Встановіть параметри для перетворення файлу SVG у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл SVG + string filePath = "input.svg"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл SVG у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "SVG" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/svg.vi.md b/content/viewer/net/svg.vi.md new file mode 100644 index 00000000..1cd7a733 --- /dev/null +++ b/content/viewer/net/svg.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET SVG - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị SVG trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp SVG dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp SVG trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp SVG trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị SVG thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp SVG với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp SVG thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp SVG đầu vào + string filePath = "input.svg"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp SVG thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "SVG" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/svg.zh.md b/content/viewer/net/svg.zh.md new file mode 100644 index 00000000..1281e142 --- /dev/null +++ b/content/viewer/net/svg.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SVG Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 SVG。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 SVG 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 SVG 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 SVG 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 SVG 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 SVG 文件。 + 3. 设置选项以将 SVG 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 SVG 文件 + string filePath = "input.svg"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 SVG 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "SVG" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/svgz.de.md b/content/viewer/net/svgz.de.md new file mode 100644 index 00000000..a709de22 --- /dev/null +++ b/content/viewer/net/svgz.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SVGZ Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von SVGZ in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "SVGZ Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von SVGZ-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der SVGZ-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie SVGZ in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei SVGZ mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei SVGZ im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei SVGZ ein + string filePath = "input.svgz"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei SVGZ mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "SVGZ" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/svgz.en.md b/content/viewer/net/svgz.en.md new file mode 100644 index 00000000..adc27b4b --- /dev/null +++ b/content/viewer/net/svgz.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SVGZ Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display SVGZ in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "SVGZ file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display SVGZ file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render SVGZ file in C#" + content: | + With GroupDocs.Viewer you can render SVGZ to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the SVGZ file with full path. + 3. Set options to render SVGZ file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input SVGZ file + string filePath = "input.svgz"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render SVGZ file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "SVGZ" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/svgz.es.md b/content/viewer/net/svgz.es.md new file mode 100644 index 00000000..c2d281d0 --- /dev/null +++ b/content/viewer/net/svgz.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SVGZ API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar SVGZ en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "SVGZ visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos SVGZ en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo SVGZ en C#" + content: | + Con GroupDocs.Viewer puede renderizar SVGZ a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo SVGZ con la ruta completa. + 3. Configure opciones para representar el archivo SVGZ en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada SVGZ + string filePath = "input.svgz"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo SVGZ a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "SVGZ" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/svgz.fa.md b/content/viewer/net/svgz.fa.md new file mode 100644 index 00000000..d7359b59 --- /dev/null +++ b/content/viewer/net/svgz.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SVGZ بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش SVGZ در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل SVGZ برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل SVGZ در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل SVGZ در C#" + content: | + با GroupDocs.Viewer می‌توانید SVGZ را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل SVGZ را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل SVGZ در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی SVGZ را تنظیم کنید + string filePath = "input.svgz"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل SVGZ را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "SVGZ" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/svgz.fr.md b/content/viewer/net/svgz.fr.md new file mode 100644 index 00000000..8847a3ca --- /dev/null +++ b/content/viewer/net/svgz.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET SVGZ - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher SVGZ dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "SVGZ visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier SVGZ dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier SVGZ dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer SVGZ au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier SVGZ avec le chemin complet. + 3. Définissez les options pour restituer le fichier SVGZ au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée SVGZ + string filePath = "input.svgz"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier SVGZ au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "SVGZ" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/svgz.id.md b/content/viewer/net/svgz.id.md new file mode 100644 index 00000000..e4e59e08 --- /dev/null +++ b/content/viewer/net/svgz.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SVGZ Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan SVGZ di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "SVGZ penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file SVGZ dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file SVGZ di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender SVGZ ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file SVGZ dengan path lengkap. + 3. Tetapkan opsi untuk merender file SVGZ ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan SVGZ + string filePath = "input.svgz"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file SVGZ ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "SVGZ" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/svgz.it.md b/content/viewer/net/svgz.it.md new file mode 100644 index 00000000..09e1cfec --- /dev/null +++ b/content/viewer/net/svgz.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET SVGZ: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare SVGZ in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file SVGZ per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file SVGZ in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file SVGZ in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di SVGZ in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file SVGZ con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file SVGZ nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input SVGZ + string filePath = "input.svgz"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file SVGZ in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "SVGZ" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/svgz.ja.md b/content/viewer/net/svgz.ja.md new file mode 100644 index 00000000..9dda35e9 --- /dev/null +++ b/content/viewer/net/svgz.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SVGZ ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで SVGZ を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の SVGZ ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで SVGZ ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で SVGZ ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で SVGZ を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、SVGZ ファイルをフルパスでロードします。 + 3. SVGZ ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 SVGZ ファイルを設定する + string filePath = "input.svgz"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた SVGZ ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "SVGZ" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/svgz.ko.md b/content/viewer/net/svgz.ko.md new file mode 100644 index 00000000..400e1c33 --- /dev/null +++ b/content/viewer/net/svgz.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SVGZ 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 SVGZ을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 SVGZ 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 SVGZ 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 SVGZ 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 SVGZ을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 SVGZ 파일을 로드합니다. + 3. SVGZ 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 SVGZ 파일 설정 + string filePath = "input.svgz"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 SVGZ 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "SVGZ" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/svgz.pt.md b/content/viewer/net/svgz.pt.md new file mode 100644 index 00000000..88becf5b --- /dev/null +++ b/content/viewer/net/svgz.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SVGZ API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir SVGZ em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos SVGZ para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos SVGZ em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo SVGZ em C#" + content: | + Com GroupDocs.Viewer você pode renderizar SVGZ para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo SVGZ com caminho completo. + 3. Defina opções para renderizar o arquivo SVGZ em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada SVGZ + string filePath = "input.svgz"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo SVGZ em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "SVGZ" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/svgz.ru.md b/content/viewer/net/svgz.ru.md new file mode 100644 index 00000000..56c32b9f --- /dev/null +++ b/content/viewer/net/svgz.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SVGZ API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения SVGZ в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "SVGZ средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла SVGZ в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла SVGZ в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать SVGZ в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл SVGZ с полным путем. + 3. Установите параметры для преобразования файла SVGZ в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл SVGZ + string filePath = "input.svgz"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл SVGZ в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "SVGZ" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/svgz.th.md b/content/viewer/net/svgz.th.md new file mode 100644 index 00000000..2e4c26b6 --- /dev/null +++ b/content/viewer/net/svgz.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SVGZ Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง SVGZ ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ SVGZ สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ SVGZ ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ SVGZ ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล SVGZ เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ SVGZ ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ SVGZ เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต SVGZ + string filePath = "input.svgz"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ SVGZ เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "SVGZ" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/svgz.uk.md b/content/viewer/net/svgz.uk.md new file mode 100644 index 00000000..7dc02447 --- /dev/null +++ b/content/viewer/net/svgz.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SVGZ Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення SVGZ у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів SVGZ для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу SVGZ у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу SVGZ у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити SVGZ у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл SVGZ із повним шляхом. + 3. Встановіть параметри для перетворення файлу SVGZ у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл SVGZ + string filePath = "input.svgz"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл SVGZ у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "SVGZ" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/svgz.vi.md b/content/viewer/net/svgz.vi.md new file mode 100644 index 00000000..162678db --- /dev/null +++ b/content/viewer/net/svgz.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET SVGZ - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị SVGZ trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp SVGZ dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp SVGZ trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp SVGZ trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị SVGZ thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp SVGZ với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp SVGZ thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp SVGZ đầu vào + string filePath = "input.svgz"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp SVGZ thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "SVGZ" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/svgz.zh.md b/content/viewer/net/svgz.zh.md new file mode 100644 index 00000000..11cb6069 --- /dev/null +++ b/content/viewer/net/svgz.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SVGZ Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 SVGZ。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 SVGZ 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 SVGZ 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 SVGZ 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 SVGZ 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 SVGZ 文件。 + 3. 设置选项以将 SVGZ 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 SVGZ 文件 + string filePath = "input.svgz"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 SVGZ 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "SVGZ" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sxc.de.md b/content/viewer/net/sxc.de.md new file mode 100644 index 00000000..157fae66 --- /dev/null +++ b/content/viewer/net/sxc.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SXC Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von SXC in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "SXC Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von SXC-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der SXC-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie SXC in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei SXC mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei SXC im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei SXC ein + string filePath = "input.sxc"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei SXC mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "SXC" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sxc.en.md b/content/viewer/net/sxc.en.md new file mode 100644 index 00000000..44cd754b --- /dev/null +++ b/content/viewer/net/sxc.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SXC Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display SXC in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "SXC file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display SXC file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render SXC file in C#" + content: | + With GroupDocs.Viewer you can render SXC to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the SXC file with full path. + 3. Set options to render SXC file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input SXC file + string filePath = "input.sxc"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render SXC file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "SXC" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sxc.es.md b/content/viewer/net/sxc.es.md new file mode 100644 index 00000000..951d2f40 --- /dev/null +++ b/content/viewer/net/sxc.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SXC API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar SXC en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "SXC visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos SXC en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo SXC en C#" + content: | + Con GroupDocs.Viewer puede renderizar SXC a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo SXC con la ruta completa. + 3. Configure opciones para representar el archivo SXC en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada SXC + string filePath = "input.sxc"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo SXC a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "SXC" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sxc.fa.md b/content/viewer/net/sxc.fa.md new file mode 100644 index 00000000..b74ce094 --- /dev/null +++ b/content/viewer/net/sxc.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SXC بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش SXC در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل SXC برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل SXC در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل SXC در C#" + content: | + با GroupDocs.Viewer می‌توانید SXC را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل SXC را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل SXC در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی SXC را تنظیم کنید + string filePath = "input.sxc"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل SXC را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "SXC" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sxc.fr.md b/content/viewer/net/sxc.fr.md new file mode 100644 index 00000000..d2151672 --- /dev/null +++ b/content/viewer/net/sxc.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET SXC - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher SXC dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "SXC visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier SXC dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier SXC dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer SXC au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier SXC avec le chemin complet. + 3. Définissez les options pour restituer le fichier SXC au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée SXC + string filePath = "input.sxc"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier SXC au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "SXC" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sxc.id.md b/content/viewer/net/sxc.id.md new file mode 100644 index 00000000..92f12da4 --- /dev/null +++ b/content/viewer/net/sxc.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SXC Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan SXC di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "SXC penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file SXC dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file SXC di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender SXC ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file SXC dengan path lengkap. + 3. Tetapkan opsi untuk merender file SXC ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan SXC + string filePath = "input.sxc"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file SXC ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "SXC" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sxc.it.md b/content/viewer/net/sxc.it.md new file mode 100644 index 00000000..a70ac439 --- /dev/null +++ b/content/viewer/net/sxc.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET SXC: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare SXC in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file SXC per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file SXC in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file SXC in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di SXC in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file SXC con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file SXC nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input SXC + string filePath = "input.sxc"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file SXC in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "SXC" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sxc.ja.md b/content/viewer/net/sxc.ja.md new file mode 100644 index 00000000..c5682c59 --- /dev/null +++ b/content/viewer/net/sxc.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SXC ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで SXC を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の SXC ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで SXC ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で SXC ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で SXC を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、SXC ファイルをフルパスでロードします。 + 3. SXC ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 SXC ファイルを設定する + string filePath = "input.sxc"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた SXC ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "SXC" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sxc.ko.md b/content/viewer/net/sxc.ko.md new file mode 100644 index 00000000..94134e85 --- /dev/null +++ b/content/viewer/net/sxc.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SXC 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 SXC을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 SXC 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 SXC 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 SXC 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 SXC을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 SXC 파일을 로드합니다. + 3. SXC 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 SXC 파일 설정 + string filePath = "input.sxc"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 SXC 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "SXC" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sxc.pt.md b/content/viewer/net/sxc.pt.md new file mode 100644 index 00000000..eec45a5d --- /dev/null +++ b/content/viewer/net/sxc.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SXC API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir SXC em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos SXC para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos SXC em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo SXC em C#" + content: | + Com GroupDocs.Viewer você pode renderizar SXC para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo SXC com caminho completo. + 3. Defina opções para renderizar o arquivo SXC em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada SXC + string filePath = "input.sxc"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo SXC em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "SXC" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sxc.ru.md b/content/viewer/net/sxc.ru.md new file mode 100644 index 00000000..d51e3359 --- /dev/null +++ b/content/viewer/net/sxc.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SXC API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения SXC в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "SXC средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла SXC в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла SXC в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать SXC в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл SXC с полным путем. + 3. Установите параметры для преобразования файла SXC в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл SXC + string filePath = "input.sxc"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл SXC в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "SXC" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sxc.th.md b/content/viewer/net/sxc.th.md new file mode 100644 index 00000000..90f79f0f --- /dev/null +++ b/content/viewer/net/sxc.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SXC Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง SXC ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ SXC สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ SXC ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ SXC ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล SXC เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ SXC ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ SXC เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต SXC + string filePath = "input.sxc"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ SXC เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "SXC" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sxc.uk.md b/content/viewer/net/sxc.uk.md new file mode 100644 index 00000000..dc0537eb --- /dev/null +++ b/content/viewer/net/sxc.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SXC Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення SXC у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів SXC для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу SXC у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу SXC у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити SXC у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл SXC із повним шляхом. + 3. Встановіть параметри для перетворення файлу SXC у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл SXC + string filePath = "input.sxc"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл SXC у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "SXC" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sxc.vi.md b/content/viewer/net/sxc.vi.md new file mode 100644 index 00000000..fc3b8c1a --- /dev/null +++ b/content/viewer/net/sxc.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET SXC - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị SXC trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp SXC dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp SXC trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp SXC trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị SXC thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp SXC với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp SXC thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp SXC đầu vào + string filePath = "input.sxc"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp SXC thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "SXC" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/sxc.zh.md b/content/viewer/net/sxc.zh.md new file mode 100644 index 00000000..2cfa4bc9 --- /dev/null +++ b/content/viewer/net/sxc.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET SXC Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 SXC。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 SXC 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 SXC 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 SXC 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 SXC 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 SXC 文件。 + 3. 设置选项以将 SXC 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 SXC 文件 + string filePath = "input.sxc"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 SXC 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "SXC" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tar.de.md b/content/viewer/net/tar.de.md new file mode 100644 index 00000000..69eee687 --- /dev/null +++ b/content/viewer/net/tar.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TAR Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von TAR in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "TAR Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von TAR-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der TAR-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie TAR in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei TAR mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei TAR im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei TAR ein + string filePath = "input.tar"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei TAR mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "TAR" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tar.en.md b/content/viewer/net/tar.en.md new file mode 100644 index 00000000..a2720542 --- /dev/null +++ b/content/viewer/net/tar.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TAR Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display TAR in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "TAR file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display TAR file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render TAR file in C#" + content: | + With GroupDocs.Viewer you can render TAR to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the TAR file with full path. + 3. Set options to render TAR file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input TAR file + string filePath = "input.tar"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render TAR file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "TAR" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tar.es.md b/content/viewer/net/tar.es.md new file mode 100644 index 00000000..63cc98b1 --- /dev/null +++ b/content/viewer/net/tar.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TAR API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar TAR en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "TAR visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos TAR en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo TAR en C#" + content: | + Con GroupDocs.Viewer puede renderizar TAR a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo TAR con la ruta completa. + 3. Configure opciones para representar el archivo TAR en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada TAR + string filePath = "input.tar"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo TAR a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "TAR" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tar.fa.md b/content/viewer/net/tar.fa.md new file mode 100644 index 00000000..1445227e --- /dev/null +++ b/content/viewer/net/tar.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TAR بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش TAR در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل TAR برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل TAR در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل TAR در C#" + content: | + با GroupDocs.Viewer می‌توانید TAR را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل TAR را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل TAR در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی TAR را تنظیم کنید + string filePath = "input.tar"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل TAR را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "TAR" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tar.fr.md b/content/viewer/net/tar.fr.md new file mode 100644 index 00000000..27ba4570 --- /dev/null +++ b/content/viewer/net/tar.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET TAR - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher TAR dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "TAR visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier TAR dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier TAR dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer TAR au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier TAR avec le chemin complet. + 3. Définissez les options pour restituer le fichier TAR au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée TAR + string filePath = "input.tar"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier TAR au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "TAR" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tar.id.md b/content/viewer/net/tar.id.md new file mode 100644 index 00000000..6a6ba617 --- /dev/null +++ b/content/viewer/net/tar.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TAR Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan TAR di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "TAR penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file TAR dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file TAR di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender TAR ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file TAR dengan path lengkap. + 3. Tetapkan opsi untuk merender file TAR ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan TAR + string filePath = "input.tar"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file TAR ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "TAR" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tar.it.md b/content/viewer/net/tar.it.md new file mode 100644 index 00000000..7e925e41 --- /dev/null +++ b/content/viewer/net/tar.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET TAR: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare TAR in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file TAR per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file TAR in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file TAR in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di TAR in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file TAR con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file TAR nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input TAR + string filePath = "input.tar"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file TAR in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "TAR" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tar.ja.md b/content/viewer/net/tar.ja.md new file mode 100644 index 00000000..07c3d353 --- /dev/null +++ b/content/viewer/net/tar.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TAR ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで TAR を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の TAR ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで TAR ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で TAR ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で TAR を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、TAR ファイルをフルパスでロードします。 + 3. TAR ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 TAR ファイルを設定する + string filePath = "input.tar"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた TAR ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "TAR" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tar.ko.md b/content/viewer/net/tar.ko.md new file mode 100644 index 00000000..43df13d3 --- /dev/null +++ b/content/viewer/net/tar.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TAR 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 TAR을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 TAR 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 TAR 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 TAR 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 TAR을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 TAR 파일을 로드합니다. + 3. TAR 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 TAR 파일 설정 + string filePath = "input.tar"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 TAR 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "TAR" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tar.pt.md b/content/viewer/net/tar.pt.md new file mode 100644 index 00000000..110cfc41 --- /dev/null +++ b/content/viewer/net/tar.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TAR API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir TAR em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos TAR para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos TAR em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo TAR em C#" + content: | + Com GroupDocs.Viewer você pode renderizar TAR para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo TAR com caminho completo. + 3. Defina opções para renderizar o arquivo TAR em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada TAR + string filePath = "input.tar"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo TAR em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "TAR" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tar.ru.md b/content/viewer/net/tar.ru.md new file mode 100644 index 00000000..b6a6634d --- /dev/null +++ b/content/viewer/net/tar.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TAR API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения TAR в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "TAR средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла TAR в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла TAR в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать TAR в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл TAR с полным путем. + 3. Установите параметры для преобразования файла TAR в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл TAR + string filePath = "input.tar"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл TAR в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "TAR" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tar.th.md b/content/viewer/net/tar.th.md new file mode 100644 index 00000000..645c89f9 --- /dev/null +++ b/content/viewer/net/tar.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TAR Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง TAR ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ TAR สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ TAR ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ TAR ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล TAR เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ TAR ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ TAR เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต TAR + string filePath = "input.tar"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ TAR เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "TAR" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tar.uk.md b/content/viewer/net/tar.uk.md new file mode 100644 index 00000000..537b5355 --- /dev/null +++ b/content/viewer/net/tar.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TAR Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення TAR у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів TAR для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу TAR у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу TAR у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити TAR у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл TAR із повним шляхом. + 3. Встановіть параметри для перетворення файлу TAR у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл TAR + string filePath = "input.tar"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл TAR у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "TAR" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tar.vi.md b/content/viewer/net/tar.vi.md new file mode 100644 index 00000000..6d893d8e --- /dev/null +++ b/content/viewer/net/tar.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET TAR - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị TAR trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp TAR dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp TAR trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp TAR trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị TAR thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp TAR với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp TAR thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp TAR đầu vào + string filePath = "input.tar"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp TAR thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "TAR" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tar.zh.md b/content/viewer/net/tar.zh.md new file mode 100644 index 00000000..a87146d6 --- /dev/null +++ b/content/viewer/net/tar.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TAR Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 TAR。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 TAR 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 TAR 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 TAR 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 TAR 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 TAR 文件。 + 3. 设置选项以将 TAR 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 TAR 文件 + string filePath = "input.tar"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 TAR 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "TAR" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/targz.de.md b/content/viewer/net/targz.de.md new file mode 100644 index 00000000..3c496f6f --- /dev/null +++ b/content/viewer/net/targz.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TARGZ Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von TARGZ in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "TARGZ Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von TARGZ-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der TARGZ-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie TARGZ in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei TARGZ mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei TARGZ im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei TARGZ ein + string filePath = "input.targz"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei TARGZ mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "TARGZ" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/targz.en.md b/content/viewer/net/targz.en.md new file mode 100644 index 00000000..2dfd9546 --- /dev/null +++ b/content/viewer/net/targz.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TARGZ Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display TARGZ in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "TARGZ file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display TARGZ file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render TARGZ file in C#" + content: | + With GroupDocs.Viewer you can render TARGZ to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the TARGZ file with full path. + 3. Set options to render TARGZ file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input TARGZ file + string filePath = "input.targz"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render TARGZ file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "TARGZ" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/targz.es.md b/content/viewer/net/targz.es.md new file mode 100644 index 00000000..8ec210c8 --- /dev/null +++ b/content/viewer/net/targz.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TARGZ API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar TARGZ en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "TARGZ visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos TARGZ en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo TARGZ en C#" + content: | + Con GroupDocs.Viewer puede renderizar TARGZ a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo TARGZ con la ruta completa. + 3. Configure opciones para representar el archivo TARGZ en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada TARGZ + string filePath = "input.targz"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo TARGZ a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "TARGZ" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/targz.fa.md b/content/viewer/net/targz.fa.md new file mode 100644 index 00000000..f486b084 --- /dev/null +++ b/content/viewer/net/targz.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TARGZ بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش TARGZ در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل TARGZ برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل TARGZ در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل TARGZ در C#" + content: | + با GroupDocs.Viewer می‌توانید TARGZ را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل TARGZ را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل TARGZ در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی TARGZ را تنظیم کنید + string filePath = "input.targz"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل TARGZ را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "TARGZ" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/targz.fr.md b/content/viewer/net/targz.fr.md new file mode 100644 index 00000000..e40028b9 --- /dev/null +++ b/content/viewer/net/targz.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET TARGZ - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher TARGZ dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "TARGZ visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier TARGZ dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier TARGZ dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer TARGZ au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier TARGZ avec le chemin complet. + 3. Définissez les options pour restituer le fichier TARGZ au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée TARGZ + string filePath = "input.targz"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier TARGZ au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "TARGZ" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/targz.id.md b/content/viewer/net/targz.id.md new file mode 100644 index 00000000..174dbbe2 --- /dev/null +++ b/content/viewer/net/targz.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TARGZ Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan TARGZ di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "TARGZ penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file TARGZ dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file TARGZ di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender TARGZ ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file TARGZ dengan path lengkap. + 3. Tetapkan opsi untuk merender file TARGZ ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan TARGZ + string filePath = "input.targz"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file TARGZ ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "TARGZ" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/targz.it.md b/content/viewer/net/targz.it.md new file mode 100644 index 00000000..a5f54136 --- /dev/null +++ b/content/viewer/net/targz.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET TARGZ: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare TARGZ in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file TARGZ per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file TARGZ in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file TARGZ in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di TARGZ in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file TARGZ con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file TARGZ nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input TARGZ + string filePath = "input.targz"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file TARGZ in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "TARGZ" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/targz.ja.md b/content/viewer/net/targz.ja.md new file mode 100644 index 00000000..635a7c1c --- /dev/null +++ b/content/viewer/net/targz.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TARGZ ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで TARGZ を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の TARGZ ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで TARGZ ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で TARGZ ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で TARGZ を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、TARGZ ファイルをフルパスでロードします。 + 3. TARGZ ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 TARGZ ファイルを設定する + string filePath = "input.targz"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた TARGZ ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "TARGZ" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/targz.ko.md b/content/viewer/net/targz.ko.md new file mode 100644 index 00000000..e48d70f7 --- /dev/null +++ b/content/viewer/net/targz.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TARGZ 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 TARGZ을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 TARGZ 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 TARGZ 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 TARGZ 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 TARGZ을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 TARGZ 파일을 로드합니다. + 3. TARGZ 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 TARGZ 파일 설정 + string filePath = "input.targz"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 TARGZ 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "TARGZ" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/targz.pt.md b/content/viewer/net/targz.pt.md new file mode 100644 index 00000000..a08c99d0 --- /dev/null +++ b/content/viewer/net/targz.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TARGZ API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir TARGZ em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos TARGZ para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos TARGZ em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo TARGZ em C#" + content: | + Com GroupDocs.Viewer você pode renderizar TARGZ para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo TARGZ com caminho completo. + 3. Defina opções para renderizar o arquivo TARGZ em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada TARGZ + string filePath = "input.targz"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo TARGZ em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "TARGZ" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/targz.ru.md b/content/viewer/net/targz.ru.md new file mode 100644 index 00000000..b7fd1e30 --- /dev/null +++ b/content/viewer/net/targz.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TARGZ API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения TARGZ в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "TARGZ средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла TARGZ в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла TARGZ в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать TARGZ в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл TARGZ с полным путем. + 3. Установите параметры для преобразования файла TARGZ в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл TARGZ + string filePath = "input.targz"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл TARGZ в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "TARGZ" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/targz.th.md b/content/viewer/net/targz.th.md new file mode 100644 index 00000000..db2dc26f --- /dev/null +++ b/content/viewer/net/targz.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TARGZ Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง TARGZ ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ TARGZ สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ TARGZ ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ TARGZ ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล TARGZ เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ TARGZ ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ TARGZ เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต TARGZ + string filePath = "input.targz"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ TARGZ เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "TARGZ" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/targz.uk.md b/content/viewer/net/targz.uk.md new file mode 100644 index 00000000..1e4c2986 --- /dev/null +++ b/content/viewer/net/targz.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TARGZ Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення TARGZ у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів TARGZ для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу TARGZ у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу TARGZ у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити TARGZ у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл TARGZ із повним шляхом. + 3. Встановіть параметри для перетворення файлу TARGZ у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл TARGZ + string filePath = "input.targz"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл TARGZ у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "TARGZ" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/targz.vi.md b/content/viewer/net/targz.vi.md new file mode 100644 index 00000000..a9f8a1f6 --- /dev/null +++ b/content/viewer/net/targz.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET TARGZ - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị TARGZ trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp TARGZ dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp TARGZ trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp TARGZ trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị TARGZ thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp TARGZ với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp TARGZ thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp TARGZ đầu vào + string filePath = "input.targz"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp TARGZ thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "TARGZ" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/targz.zh.md b/content/viewer/net/targz.zh.md new file mode 100644 index 00000000..9d4c1e61 --- /dev/null +++ b/content/viewer/net/targz.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TARGZ Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 TARGZ。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 TARGZ 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 TARGZ 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 TARGZ 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 TARGZ 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 TARGZ 文件。 + 3. 设置选项以将 TARGZ 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 TARGZ 文件 + string filePath = "input.targz"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 TARGZ 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "TARGZ" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tarxz.de.md b/content/viewer/net/tarxz.de.md new file mode 100644 index 00000000..5c3cf020 --- /dev/null +++ b/content/viewer/net/tarxz.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TARXZ Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von TARXZ in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "TARXZ Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von TARXZ-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der TARXZ-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie TARXZ in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei TARXZ mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei TARXZ im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei TARXZ ein + string filePath = "input.tarxz"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei TARXZ mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "TARXZ" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tarxz.en.md b/content/viewer/net/tarxz.en.md new file mode 100644 index 00000000..bc1550af --- /dev/null +++ b/content/viewer/net/tarxz.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TARXZ Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display TARXZ in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "TARXZ file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display TARXZ file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render TARXZ file in C#" + content: | + With GroupDocs.Viewer you can render TARXZ to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the TARXZ file with full path. + 3. Set options to render TARXZ file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input TARXZ file + string filePath = "input.tarxz"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render TARXZ file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "TARXZ" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tarxz.es.md b/content/viewer/net/tarxz.es.md new file mode 100644 index 00000000..b25cdbf2 --- /dev/null +++ b/content/viewer/net/tarxz.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TARXZ API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar TARXZ en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "TARXZ visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos TARXZ en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo TARXZ en C#" + content: | + Con GroupDocs.Viewer puede renderizar TARXZ a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo TARXZ con la ruta completa. + 3. Configure opciones para representar el archivo TARXZ en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada TARXZ + string filePath = "input.tarxz"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo TARXZ a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "TARXZ" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tarxz.fa.md b/content/viewer/net/tarxz.fa.md new file mode 100644 index 00000000..726665de --- /dev/null +++ b/content/viewer/net/tarxz.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TARXZ بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش TARXZ در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل TARXZ برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل TARXZ در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل TARXZ در C#" + content: | + با GroupDocs.Viewer می‌توانید TARXZ را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل TARXZ را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل TARXZ در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی TARXZ را تنظیم کنید + string filePath = "input.tarxz"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل TARXZ را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "TARXZ" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tarxz.fr.md b/content/viewer/net/tarxz.fr.md new file mode 100644 index 00000000..2e561675 --- /dev/null +++ b/content/viewer/net/tarxz.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET TARXZ - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher TARXZ dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "TARXZ visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier TARXZ dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier TARXZ dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer TARXZ au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier TARXZ avec le chemin complet. + 3. Définissez les options pour restituer le fichier TARXZ au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée TARXZ + string filePath = "input.tarxz"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier TARXZ au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "TARXZ" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tarxz.id.md b/content/viewer/net/tarxz.id.md new file mode 100644 index 00000000..43b6fef2 --- /dev/null +++ b/content/viewer/net/tarxz.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TARXZ Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan TARXZ di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "TARXZ penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file TARXZ dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file TARXZ di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender TARXZ ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file TARXZ dengan path lengkap. + 3. Tetapkan opsi untuk merender file TARXZ ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan TARXZ + string filePath = "input.tarxz"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file TARXZ ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "TARXZ" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tarxz.it.md b/content/viewer/net/tarxz.it.md new file mode 100644 index 00000000..0d1de312 --- /dev/null +++ b/content/viewer/net/tarxz.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET TARXZ: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare TARXZ in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file TARXZ per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file TARXZ in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file TARXZ in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di TARXZ in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file TARXZ con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file TARXZ nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input TARXZ + string filePath = "input.tarxz"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file TARXZ in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "TARXZ" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tarxz.ja.md b/content/viewer/net/tarxz.ja.md new file mode 100644 index 00000000..778ac5d1 --- /dev/null +++ b/content/viewer/net/tarxz.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TARXZ ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで TARXZ を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の TARXZ ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで TARXZ ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で TARXZ ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で TARXZ を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、TARXZ ファイルをフルパスでロードします。 + 3. TARXZ ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 TARXZ ファイルを設定する + string filePath = "input.tarxz"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた TARXZ ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "TARXZ" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tarxz.ko.md b/content/viewer/net/tarxz.ko.md new file mode 100644 index 00000000..3e57396e --- /dev/null +++ b/content/viewer/net/tarxz.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TARXZ 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 TARXZ을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 TARXZ 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 TARXZ 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 TARXZ 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 TARXZ을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 TARXZ 파일을 로드합니다. + 3. TARXZ 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 TARXZ 파일 설정 + string filePath = "input.tarxz"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 TARXZ 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "TARXZ" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tarxz.pt.md b/content/viewer/net/tarxz.pt.md new file mode 100644 index 00000000..d3588ceb --- /dev/null +++ b/content/viewer/net/tarxz.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TARXZ API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir TARXZ em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos TARXZ para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos TARXZ em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo TARXZ em C#" + content: | + Com GroupDocs.Viewer você pode renderizar TARXZ para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo TARXZ com caminho completo. + 3. Defina opções para renderizar o arquivo TARXZ em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada TARXZ + string filePath = "input.tarxz"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo TARXZ em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "TARXZ" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tarxz.ru.md b/content/viewer/net/tarxz.ru.md new file mode 100644 index 00000000..87c0694a --- /dev/null +++ b/content/viewer/net/tarxz.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TARXZ API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения TARXZ в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "TARXZ средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла TARXZ в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла TARXZ в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать TARXZ в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл TARXZ с полным путем. + 3. Установите параметры для преобразования файла TARXZ в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл TARXZ + string filePath = "input.tarxz"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл TARXZ в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "TARXZ" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tarxz.th.md b/content/viewer/net/tarxz.th.md new file mode 100644 index 00000000..51fc6fcb --- /dev/null +++ b/content/viewer/net/tarxz.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TARXZ Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง TARXZ ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ TARXZ สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ TARXZ ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ TARXZ ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล TARXZ เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ TARXZ ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ TARXZ เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต TARXZ + string filePath = "input.tarxz"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ TARXZ เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "TARXZ" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tarxz.uk.md b/content/viewer/net/tarxz.uk.md new file mode 100644 index 00000000..2d53a444 --- /dev/null +++ b/content/viewer/net/tarxz.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TARXZ Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення TARXZ у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів TARXZ для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу TARXZ у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу TARXZ у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити TARXZ у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл TARXZ із повним шляхом. + 3. Встановіть параметри для перетворення файлу TARXZ у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл TARXZ + string filePath = "input.tarxz"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл TARXZ у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "TARXZ" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tarxz.vi.md b/content/viewer/net/tarxz.vi.md new file mode 100644 index 00000000..4c5b09fa --- /dev/null +++ b/content/viewer/net/tarxz.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET TARXZ - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị TARXZ trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp TARXZ dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp TARXZ trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp TARXZ trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị TARXZ thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp TARXZ với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp TARXZ thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp TARXZ đầu vào + string filePath = "input.tarxz"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp TARXZ thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "TARXZ" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tarxz.zh.md b/content/viewer/net/tarxz.zh.md new file mode 100644 index 00000000..9711b973 --- /dev/null +++ b/content/viewer/net/tarxz.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TARXZ Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 TARXZ。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 TARXZ 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 TARXZ 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 TARXZ 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 TARXZ 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 TARXZ 文件。 + 3. 设置选项以将 TARXZ 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 TARXZ 文件 + string filePath = "input.tarxz"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 TARXZ 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "TARXZ" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tex.de.md b/content/viewer/net/tex.de.md new file mode 100644 index 00000000..43b740c8 --- /dev/null +++ b/content/viewer/net/tex.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TEX Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von TEX in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "TEX Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von TEX-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der TEX-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie TEX in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei TEX mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei TEX im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei TEX ein + string filePath = "input.tex"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei TEX mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "TEX" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tex.en.md b/content/viewer/net/tex.en.md new file mode 100644 index 00000000..e7c12c02 --- /dev/null +++ b/content/viewer/net/tex.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TEX Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display TEX in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "TEX file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display TEX file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render TEX file in C#" + content: | + With GroupDocs.Viewer you can render TEX to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the TEX file with full path. + 3. Set options to render TEX file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input TEX file + string filePath = "input.tex"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render TEX file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "TEX" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tex.es.md b/content/viewer/net/tex.es.md new file mode 100644 index 00000000..163dbcb0 --- /dev/null +++ b/content/viewer/net/tex.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TEX API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar TEX en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "TEX visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos TEX en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo TEX en C#" + content: | + Con GroupDocs.Viewer puede renderizar TEX a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo TEX con la ruta completa. + 3. Configure opciones para representar el archivo TEX en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada TEX + string filePath = "input.tex"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo TEX a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "TEX" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tex.fa.md b/content/viewer/net/tex.fa.md new file mode 100644 index 00000000..050b0baa --- /dev/null +++ b/content/viewer/net/tex.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TEX بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش TEX در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل TEX برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل TEX در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل TEX در C#" + content: | + با GroupDocs.Viewer می‌توانید TEX را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل TEX را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل TEX در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی TEX را تنظیم کنید + string filePath = "input.tex"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل TEX را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "TEX" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tex.fr.md b/content/viewer/net/tex.fr.md new file mode 100644 index 00000000..a7659bd7 --- /dev/null +++ b/content/viewer/net/tex.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET TEX - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher TEX dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "TEX visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier TEX dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier TEX dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer TEX au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier TEX avec le chemin complet. + 3. Définissez les options pour restituer le fichier TEX au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée TEX + string filePath = "input.tex"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier TEX au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "TEX" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tex.id.md b/content/viewer/net/tex.id.md new file mode 100644 index 00000000..53b17265 --- /dev/null +++ b/content/viewer/net/tex.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TEX Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan TEX di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "TEX penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file TEX dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file TEX di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender TEX ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file TEX dengan path lengkap. + 3. Tetapkan opsi untuk merender file TEX ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan TEX + string filePath = "input.tex"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file TEX ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "TEX" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tex.it.md b/content/viewer/net/tex.it.md new file mode 100644 index 00000000..8afcc1c5 --- /dev/null +++ b/content/viewer/net/tex.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET TEX: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare TEX in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file TEX per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file TEX in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file TEX in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di TEX in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file TEX con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file TEX nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input TEX + string filePath = "input.tex"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file TEX in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "TEX" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tex.ja.md b/content/viewer/net/tex.ja.md new file mode 100644 index 00000000..143e257b --- /dev/null +++ b/content/viewer/net/tex.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TEX ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで TEX を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の TEX ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで TEX ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で TEX ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で TEX を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、TEX ファイルをフルパスでロードします。 + 3. TEX ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 TEX ファイルを設定する + string filePath = "input.tex"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた TEX ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "TEX" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tex.ko.md b/content/viewer/net/tex.ko.md new file mode 100644 index 00000000..ebbd5f36 --- /dev/null +++ b/content/viewer/net/tex.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TEX 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 TEX을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 TEX 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 TEX 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 TEX 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 TEX을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 TEX 파일을 로드합니다. + 3. TEX 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 TEX 파일 설정 + string filePath = "input.tex"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 TEX 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "TEX" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tex.pt.md b/content/viewer/net/tex.pt.md new file mode 100644 index 00000000..25e8a4e5 --- /dev/null +++ b/content/viewer/net/tex.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TEX API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir TEX em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos TEX para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos TEX em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo TEX em C#" + content: | + Com GroupDocs.Viewer você pode renderizar TEX para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo TEX com caminho completo. + 3. Defina opções para renderizar o arquivo TEX em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada TEX + string filePath = "input.tex"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo TEX em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "TEX" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tex.ru.md b/content/viewer/net/tex.ru.md new file mode 100644 index 00000000..38d2cb69 --- /dev/null +++ b/content/viewer/net/tex.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TEX API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения TEX в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "TEX средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла TEX в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла TEX в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать TEX в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл TEX с полным путем. + 3. Установите параметры для преобразования файла TEX в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл TEX + string filePath = "input.tex"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл TEX в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "TEX" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tex.th.md b/content/viewer/net/tex.th.md new file mode 100644 index 00000000..30e3820c --- /dev/null +++ b/content/viewer/net/tex.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TEX Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง TEX ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ TEX สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ TEX ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ TEX ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล TEX เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ TEX ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ TEX เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต TEX + string filePath = "input.tex"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ TEX เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "TEX" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tex.uk.md b/content/viewer/net/tex.uk.md new file mode 100644 index 00000000..d153cbc4 --- /dev/null +++ b/content/viewer/net/tex.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TEX Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення TEX у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів TEX для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу TEX у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу TEX у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити TEX у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл TEX із повним шляхом. + 3. Встановіть параметри для перетворення файлу TEX у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл TEX + string filePath = "input.tex"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл TEX у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "TEX" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tex.vi.md b/content/viewer/net/tex.vi.md new file mode 100644 index 00000000..3e18aa13 --- /dev/null +++ b/content/viewer/net/tex.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET TEX - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị TEX trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp TEX dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp TEX trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp TEX trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị TEX thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp TEX với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp TEX thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp TEX đầu vào + string filePath = "input.tex"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp TEX thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "TEX" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tex.zh.md b/content/viewer/net/tex.zh.md new file mode 100644 index 00000000..72ad6d0b --- /dev/null +++ b/content/viewer/net/tex.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TEX Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 TEX。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 TEX 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 TEX 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 TEX 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 TEX 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 TEX 文件。 + 3. 设置选项以将 TEX 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 TEX 文件 + string filePath = "input.tex"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 TEX 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "TEX" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tga.de.md b/content/viewer/net/tga.de.md new file mode 100644 index 00000000..3688ae4a --- /dev/null +++ b/content/viewer/net/tga.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TGA Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von TGA in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "TGA Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von TGA-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der TGA-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie TGA in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei TGA mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei TGA im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei TGA ein + string filePath = "input.tga"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei TGA mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "TGA" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tga.en.md b/content/viewer/net/tga.en.md new file mode 100644 index 00000000..6bc53b59 --- /dev/null +++ b/content/viewer/net/tga.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TGA Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display TGA in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "TGA file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display TGA file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render TGA file in C#" + content: | + With GroupDocs.Viewer you can render TGA to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the TGA file with full path. + 3. Set options to render TGA file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input TGA file + string filePath = "input.tga"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render TGA file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "TGA" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tga.es.md b/content/viewer/net/tga.es.md new file mode 100644 index 00000000..05eef326 --- /dev/null +++ b/content/viewer/net/tga.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TGA API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar TGA en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "TGA visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos TGA en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo TGA en C#" + content: | + Con GroupDocs.Viewer puede renderizar TGA a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo TGA con la ruta completa. + 3. Configure opciones para representar el archivo TGA en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada TGA + string filePath = "input.tga"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo TGA a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "TGA" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tga.fa.md b/content/viewer/net/tga.fa.md new file mode 100644 index 00000000..93ea415b --- /dev/null +++ b/content/viewer/net/tga.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TGA بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش TGA در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل TGA برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل TGA در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل TGA در C#" + content: | + با GroupDocs.Viewer می‌توانید TGA را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل TGA را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل TGA در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی TGA را تنظیم کنید + string filePath = "input.tga"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل TGA را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "TGA" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tga.fr.md b/content/viewer/net/tga.fr.md new file mode 100644 index 00000000..0a0a2bb5 --- /dev/null +++ b/content/viewer/net/tga.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET TGA - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher TGA dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "TGA visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier TGA dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier TGA dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer TGA au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier TGA avec le chemin complet. + 3. Définissez les options pour restituer le fichier TGA au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée TGA + string filePath = "input.tga"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier TGA au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "TGA" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tga.id.md b/content/viewer/net/tga.id.md new file mode 100644 index 00000000..0eb5aa8a --- /dev/null +++ b/content/viewer/net/tga.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TGA Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan TGA di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "TGA penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file TGA dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file TGA di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender TGA ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file TGA dengan path lengkap. + 3. Tetapkan opsi untuk merender file TGA ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan TGA + string filePath = "input.tga"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file TGA ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "TGA" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tga.it.md b/content/viewer/net/tga.it.md new file mode 100644 index 00000000..cb306da5 --- /dev/null +++ b/content/viewer/net/tga.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET TGA: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare TGA in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file TGA per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file TGA in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file TGA in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di TGA in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file TGA con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file TGA nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input TGA + string filePath = "input.tga"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file TGA in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "TGA" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tga.ja.md b/content/viewer/net/tga.ja.md new file mode 100644 index 00000000..982ab319 --- /dev/null +++ b/content/viewer/net/tga.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TGA ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで TGA を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の TGA ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで TGA ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で TGA ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で TGA を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、TGA ファイルをフルパスでロードします。 + 3. TGA ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 TGA ファイルを設定する + string filePath = "input.tga"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた TGA ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "TGA" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tga.ko.md b/content/viewer/net/tga.ko.md new file mode 100644 index 00000000..653b5bd6 --- /dev/null +++ b/content/viewer/net/tga.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TGA 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 TGA을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 TGA 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 TGA 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 TGA 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 TGA을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 TGA 파일을 로드합니다. + 3. TGA 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 TGA 파일 설정 + string filePath = "input.tga"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 TGA 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "TGA" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tga.pt.md b/content/viewer/net/tga.pt.md new file mode 100644 index 00000000..d5e39af4 --- /dev/null +++ b/content/viewer/net/tga.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TGA API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir TGA em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos TGA para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos TGA em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo TGA em C#" + content: | + Com GroupDocs.Viewer você pode renderizar TGA para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo TGA com caminho completo. + 3. Defina opções para renderizar o arquivo TGA em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada TGA + string filePath = "input.tga"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo TGA em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "TGA" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tga.ru.md b/content/viewer/net/tga.ru.md new file mode 100644 index 00000000..b3630acf --- /dev/null +++ b/content/viewer/net/tga.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TGA API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения TGA в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "TGA средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла TGA в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла TGA в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать TGA в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл TGA с полным путем. + 3. Установите параметры для преобразования файла TGA в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл TGA + string filePath = "input.tga"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл TGA в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "TGA" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tga.th.md b/content/viewer/net/tga.th.md new file mode 100644 index 00000000..fd7cabc8 --- /dev/null +++ b/content/viewer/net/tga.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TGA Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง TGA ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ TGA สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ TGA ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ TGA ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล TGA เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ TGA ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ TGA เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต TGA + string filePath = "input.tga"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ TGA เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "TGA" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tga.uk.md b/content/viewer/net/tga.uk.md new file mode 100644 index 00000000..7ad5f4b2 --- /dev/null +++ b/content/viewer/net/tga.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TGA Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення TGA у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів TGA для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу TGA у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу TGA у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити TGA у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл TGA із повним шляхом. + 3. Встановіть параметри для перетворення файлу TGA у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл TGA + string filePath = "input.tga"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл TGA у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "TGA" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tga.vi.md b/content/viewer/net/tga.vi.md new file mode 100644 index 00000000..19b8b798 --- /dev/null +++ b/content/viewer/net/tga.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET TGA - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị TGA trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp TGA dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp TGA trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp TGA trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị TGA thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp TGA với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp TGA thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp TGA đầu vào + string filePath = "input.tga"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp TGA thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "TGA" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tga.zh.md b/content/viewer/net/tga.zh.md new file mode 100644 index 00000000..4828b221 --- /dev/null +++ b/content/viewer/net/tga.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TGA Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 TGA。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 TGA 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 TGA 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 TGA 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 TGA 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 TGA 文件。 + 3. 设置选项以将 TGA 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 TGA 文件 + string filePath = "input.tga"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 TGA 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "TGA" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tgz.de.md b/content/viewer/net/tgz.de.md new file mode 100644 index 00000000..3b2dd342 --- /dev/null +++ b/content/viewer/net/tgz.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TGZ Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von TGZ in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "TGZ Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von TGZ-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der TGZ-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie TGZ in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei TGZ mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei TGZ im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei TGZ ein + string filePath = "input.tgz"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei TGZ mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "TGZ" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tgz.en.md b/content/viewer/net/tgz.en.md new file mode 100644 index 00000000..ca0c7e67 --- /dev/null +++ b/content/viewer/net/tgz.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TGZ Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display TGZ in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "TGZ file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display TGZ file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render TGZ file in C#" + content: | + With GroupDocs.Viewer you can render TGZ to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the TGZ file with full path. + 3. Set options to render TGZ file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input TGZ file + string filePath = "input.tgz"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render TGZ file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "TGZ" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tgz.es.md b/content/viewer/net/tgz.es.md new file mode 100644 index 00000000..86e81e63 --- /dev/null +++ b/content/viewer/net/tgz.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TGZ API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar TGZ en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "TGZ visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos TGZ en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo TGZ en C#" + content: | + Con GroupDocs.Viewer puede renderizar TGZ a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo TGZ con la ruta completa. + 3. Configure opciones para representar el archivo TGZ en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada TGZ + string filePath = "input.tgz"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo TGZ a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "TGZ" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tgz.fa.md b/content/viewer/net/tgz.fa.md new file mode 100644 index 00000000..552192a2 --- /dev/null +++ b/content/viewer/net/tgz.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TGZ بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش TGZ در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل TGZ برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل TGZ در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل TGZ در C#" + content: | + با GroupDocs.Viewer می‌توانید TGZ را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل TGZ را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل TGZ در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی TGZ را تنظیم کنید + string filePath = "input.tgz"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل TGZ را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "TGZ" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tgz.fr.md b/content/viewer/net/tgz.fr.md new file mode 100644 index 00000000..b72d5f6d --- /dev/null +++ b/content/viewer/net/tgz.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET TGZ - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher TGZ dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "TGZ visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier TGZ dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier TGZ dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer TGZ au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier TGZ avec le chemin complet. + 3. Définissez les options pour restituer le fichier TGZ au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée TGZ + string filePath = "input.tgz"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier TGZ au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "TGZ" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tgz.id.md b/content/viewer/net/tgz.id.md new file mode 100644 index 00000000..cba7ff9f --- /dev/null +++ b/content/viewer/net/tgz.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:55 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TGZ Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan TGZ di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "TGZ penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file TGZ dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file TGZ di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender TGZ ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file TGZ dengan path lengkap. + 3. Tetapkan opsi untuk merender file TGZ ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan TGZ + string filePath = "input.tgz"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file TGZ ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "TGZ" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tgz.it.md b/content/viewer/net/tgz.it.md new file mode 100644 index 00000000..80e1f3ea --- /dev/null +++ b/content/viewer/net/tgz.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET TGZ: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare TGZ in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file TGZ per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file TGZ in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file TGZ in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di TGZ in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file TGZ con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file TGZ nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input TGZ + string filePath = "input.tgz"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file TGZ in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "TGZ" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tgz.ja.md b/content/viewer/net/tgz.ja.md new file mode 100644 index 00000000..cf6d3d15 --- /dev/null +++ b/content/viewer/net/tgz.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TGZ ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで TGZ を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の TGZ ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで TGZ ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で TGZ ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で TGZ を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、TGZ ファイルをフルパスでロードします。 + 3. TGZ ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 TGZ ファイルを設定する + string filePath = "input.tgz"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた TGZ ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "TGZ" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tgz.ko.md b/content/viewer/net/tgz.ko.md new file mode 100644 index 00000000..b5b5af7b --- /dev/null +++ b/content/viewer/net/tgz.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TGZ 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 TGZ을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 TGZ 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 TGZ 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 TGZ 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 TGZ을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 TGZ 파일을 로드합니다. + 3. TGZ 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 TGZ 파일 설정 + string filePath = "input.tgz"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 TGZ 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "TGZ" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tgz.pt.md b/content/viewer/net/tgz.pt.md new file mode 100644 index 00000000..8570ccdb --- /dev/null +++ b/content/viewer/net/tgz.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TGZ API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir TGZ em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos TGZ para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos TGZ em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo TGZ em C#" + content: | + Com GroupDocs.Viewer você pode renderizar TGZ para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo TGZ com caminho completo. + 3. Defina opções para renderizar o arquivo TGZ em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada TGZ + string filePath = "input.tgz"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo TGZ em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "TGZ" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tgz.ru.md b/content/viewer/net/tgz.ru.md new file mode 100644 index 00000000..1aff8d49 --- /dev/null +++ b/content/viewer/net/tgz.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TGZ API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения TGZ в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "TGZ средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла TGZ в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла TGZ в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать TGZ в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл TGZ с полным путем. + 3. Установите параметры для преобразования файла TGZ в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл TGZ + string filePath = "input.tgz"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл TGZ в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "TGZ" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tgz.th.md b/content/viewer/net/tgz.th.md new file mode 100644 index 00000000..4296ffdb --- /dev/null +++ b/content/viewer/net/tgz.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TGZ Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง TGZ ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ TGZ สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ TGZ ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ TGZ ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล TGZ เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ TGZ ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ TGZ เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต TGZ + string filePath = "input.tgz"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ TGZ เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "TGZ" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tgz.uk.md b/content/viewer/net/tgz.uk.md new file mode 100644 index 00000000..e996a6c6 --- /dev/null +++ b/content/viewer/net/tgz.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TGZ Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення TGZ у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів TGZ для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу TGZ у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу TGZ у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити TGZ у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл TGZ із повним шляхом. + 3. Встановіть параметри для перетворення файлу TGZ у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл TGZ + string filePath = "input.tgz"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл TGZ у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "TGZ" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tgz.vi.md b/content/viewer/net/tgz.vi.md new file mode 100644 index 00000000..10a378f8 --- /dev/null +++ b/content/viewer/net/tgz.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET TGZ - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị TGZ trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp TGZ dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp TGZ trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp TGZ trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị TGZ thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp TGZ với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp TGZ thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp TGZ đầu vào + string filePath = "input.tgz"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp TGZ thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "TGZ" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tgz.zh.md b/content/viewer/net/tgz.zh.md new file mode 100644 index 00000000..e2a15fed --- /dev/null +++ b/content/viewer/net/tgz.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TGZ Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 TGZ。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 TGZ 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 TGZ 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 TGZ 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 TGZ 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 TGZ 文件。 + 3. 设置选项以将 TGZ 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 TGZ 文件 + string filePath = "input.tgz"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 TGZ 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "TGZ" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tif.de.md b/content/viewer/net/tif.de.md new file mode 100644 index 00000000..d3a1eade --- /dev/null +++ b/content/viewer/net/tif.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TIF Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von TIF in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "TIF Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von TIF-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der TIF-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie TIF in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei TIF mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei TIF im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei TIF ein + string filePath = "input.tif"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei TIF mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "TIF" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tif.en.md b/content/viewer/net/tif.en.md new file mode 100644 index 00000000..839cc9f9 --- /dev/null +++ b/content/viewer/net/tif.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TIF Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display TIF in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "TIF file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display TIF file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render TIF file in C#" + content: | + With GroupDocs.Viewer you can render TIF to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the TIF file with full path. + 3. Set options to render TIF file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input TIF file + string filePath = "input.tif"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render TIF file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "TIF" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tif.es.md b/content/viewer/net/tif.es.md new file mode 100644 index 00000000..e1460773 --- /dev/null +++ b/content/viewer/net/tif.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TIF API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar TIF en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "TIF visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos TIF en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo TIF en C#" + content: | + Con GroupDocs.Viewer puede renderizar TIF a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo TIF con la ruta completa. + 3. Configure opciones para representar el archivo TIF en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada TIF + string filePath = "input.tif"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo TIF a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "TIF" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tif.fa.md b/content/viewer/net/tif.fa.md new file mode 100644 index 00000000..989f4f22 --- /dev/null +++ b/content/viewer/net/tif.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TIF بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش TIF در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل TIF برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل TIF در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل TIF در C#" + content: | + با GroupDocs.Viewer می‌توانید TIF را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل TIF را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل TIF در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی TIF را تنظیم کنید + string filePath = "input.tif"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل TIF را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "TIF" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tif.fr.md b/content/viewer/net/tif.fr.md new file mode 100644 index 00000000..4b13cc94 --- /dev/null +++ b/content/viewer/net/tif.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET TIF - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher TIF dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "TIF visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier TIF dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier TIF dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer TIF au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier TIF avec le chemin complet. + 3. Définissez les options pour restituer le fichier TIF au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée TIF + string filePath = "input.tif"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier TIF au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "TIF" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tif.id.md b/content/viewer/net/tif.id.md new file mode 100644 index 00000000..c50b8557 --- /dev/null +++ b/content/viewer/net/tif.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TIF Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan TIF di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "TIF penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file TIF dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file TIF di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender TIF ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file TIF dengan path lengkap. + 3. Tetapkan opsi untuk merender file TIF ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan TIF + string filePath = "input.tif"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file TIF ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "TIF" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tif.it.md b/content/viewer/net/tif.it.md new file mode 100644 index 00000000..93dd85e5 --- /dev/null +++ b/content/viewer/net/tif.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET TIF: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare TIF in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file TIF per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file TIF in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file TIF in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di TIF in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file TIF con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file TIF nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input TIF + string filePath = "input.tif"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file TIF in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "TIF" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tif.ja.md b/content/viewer/net/tif.ja.md new file mode 100644 index 00000000..d0402baa --- /dev/null +++ b/content/viewer/net/tif.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TIF ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで TIF を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の TIF ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで TIF ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で TIF ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で TIF を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、TIF ファイルをフルパスでロードします。 + 3. TIF ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 TIF ファイルを設定する + string filePath = "input.tif"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた TIF ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "TIF" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tif.ko.md b/content/viewer/net/tif.ko.md new file mode 100644 index 00000000..ca818f17 --- /dev/null +++ b/content/viewer/net/tif.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TIF 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 TIF을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 TIF 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 TIF 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 TIF 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 TIF을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 TIF 파일을 로드합니다. + 3. TIF 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 TIF 파일 설정 + string filePath = "input.tif"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 TIF 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "TIF" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tif.pt.md b/content/viewer/net/tif.pt.md new file mode 100644 index 00000000..4c570200 --- /dev/null +++ b/content/viewer/net/tif.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TIF API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir TIF em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos TIF para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos TIF em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo TIF em C#" + content: | + Com GroupDocs.Viewer você pode renderizar TIF para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo TIF com caminho completo. + 3. Defina opções para renderizar o arquivo TIF em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada TIF + string filePath = "input.tif"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo TIF em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "TIF" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tif.ru.md b/content/viewer/net/tif.ru.md new file mode 100644 index 00000000..f36e7f54 --- /dev/null +++ b/content/viewer/net/tif.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TIF API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения TIF в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "TIF средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла TIF в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла TIF в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать TIF в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл TIF с полным путем. + 3. Установите параметры для преобразования файла TIF в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл TIF + string filePath = "input.tif"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл TIF в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "TIF" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tif.th.md b/content/viewer/net/tif.th.md new file mode 100644 index 00000000..f95b7602 --- /dev/null +++ b/content/viewer/net/tif.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TIF Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง TIF ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ TIF สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ TIF ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ TIF ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล TIF เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ TIF ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ TIF เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต TIF + string filePath = "input.tif"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ TIF เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "TIF" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tif.uk.md b/content/viewer/net/tif.uk.md new file mode 100644 index 00000000..66405d6c --- /dev/null +++ b/content/viewer/net/tif.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TIF Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення TIF у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів TIF для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу TIF у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу TIF у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити TIF у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл TIF із повним шляхом. + 3. Встановіть параметри для перетворення файлу TIF у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл TIF + string filePath = "input.tif"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл TIF у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "TIF" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tif.vi.md b/content/viewer/net/tif.vi.md new file mode 100644 index 00000000..ffb4d6c6 --- /dev/null +++ b/content/viewer/net/tif.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET TIF - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị TIF trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp TIF dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp TIF trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp TIF trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị TIF thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp TIF với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp TIF thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp TIF đầu vào + string filePath = "input.tif"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp TIF thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "TIF" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tif.zh.md b/content/viewer/net/tif.zh.md new file mode 100644 index 00000000..d248fa36 --- /dev/null +++ b/content/viewer/net/tif.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TIF Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 TIF。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 TIF 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 TIF 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 TIF 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 TIF 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 TIF 文件。 + 3. 设置选项以将 TIF 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 TIF 文件 + string filePath = "input.tif"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 TIF 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "TIF" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tiff.de.md b/content/viewer/net/tiff.de.md new file mode 100644 index 00000000..e071c10a --- /dev/null +++ b/content/viewer/net/tiff.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TIFF Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von TIFF in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "TIFF Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von TIFF-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der TIFF-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie TIFF in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei TIFF mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei TIFF im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei TIFF ein + string filePath = "input.tiff"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei TIFF mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "TIFF" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tiff.en.md b/content/viewer/net/tiff.en.md new file mode 100644 index 00000000..60eb80d7 --- /dev/null +++ b/content/viewer/net/tiff.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TIFF Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display TIFF in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "TIFF file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display TIFF file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render TIFF file in C#" + content: | + With GroupDocs.Viewer you can render TIFF to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the TIFF file with full path. + 3. Set options to render TIFF file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input TIFF file + string filePath = "input.tiff"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render TIFF file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "TIFF" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tiff.es.md b/content/viewer/net/tiff.es.md new file mode 100644 index 00000000..d2c7604d --- /dev/null +++ b/content/viewer/net/tiff.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TIFF API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar TIFF en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "TIFF visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos TIFF en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo TIFF en C#" + content: | + Con GroupDocs.Viewer puede renderizar TIFF a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo TIFF con la ruta completa. + 3. Configure opciones para representar el archivo TIFF en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada TIFF + string filePath = "input.tiff"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo TIFF a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "TIFF" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tiff.fa.md b/content/viewer/net/tiff.fa.md new file mode 100644 index 00000000..63e21459 --- /dev/null +++ b/content/viewer/net/tiff.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TIFF بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش TIFF در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل TIFF برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل TIFF در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل TIFF در C#" + content: | + با GroupDocs.Viewer می‌توانید TIFF را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل TIFF را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل TIFF در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی TIFF را تنظیم کنید + string filePath = "input.tiff"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل TIFF را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "TIFF" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tiff.fr.md b/content/viewer/net/tiff.fr.md new file mode 100644 index 00000000..dcce25df --- /dev/null +++ b/content/viewer/net/tiff.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET TIFF - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher TIFF dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "TIFF visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier TIFF dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier TIFF dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer TIFF au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier TIFF avec le chemin complet. + 3. Définissez les options pour restituer le fichier TIFF au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée TIFF + string filePath = "input.tiff"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier TIFF au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "TIFF" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tiff.id.md b/content/viewer/net/tiff.id.md new file mode 100644 index 00000000..50303e8b --- /dev/null +++ b/content/viewer/net/tiff.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TIFF Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan TIFF di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "TIFF penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file TIFF dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file TIFF di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender TIFF ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file TIFF dengan path lengkap. + 3. Tetapkan opsi untuk merender file TIFF ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan TIFF + string filePath = "input.tiff"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file TIFF ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "TIFF" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tiff.it.md b/content/viewer/net/tiff.it.md new file mode 100644 index 00000000..54c6b72a --- /dev/null +++ b/content/viewer/net/tiff.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET TIFF: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare TIFF in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file TIFF per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file TIFF in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file TIFF in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di TIFF in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file TIFF con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file TIFF nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input TIFF + string filePath = "input.tiff"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file TIFF in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "TIFF" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tiff.ja.md b/content/viewer/net/tiff.ja.md new file mode 100644 index 00000000..88bd7e16 --- /dev/null +++ b/content/viewer/net/tiff.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TIFF ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで TIFF を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の TIFF ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで TIFF ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で TIFF ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で TIFF を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、TIFF ファイルをフルパスでロードします。 + 3. TIFF ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 TIFF ファイルを設定する + string filePath = "input.tiff"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた TIFF ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "TIFF" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tiff.ko.md b/content/viewer/net/tiff.ko.md new file mode 100644 index 00000000..3708484a --- /dev/null +++ b/content/viewer/net/tiff.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TIFF 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 TIFF을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 TIFF 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 TIFF 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 TIFF 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 TIFF을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 TIFF 파일을 로드합니다. + 3. TIFF 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 TIFF 파일 설정 + string filePath = "input.tiff"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 TIFF 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "TIFF" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tiff.pt.md b/content/viewer/net/tiff.pt.md new file mode 100644 index 00000000..5511afc0 --- /dev/null +++ b/content/viewer/net/tiff.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TIFF API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir TIFF em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos TIFF para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos TIFF em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo TIFF em C#" + content: | + Com GroupDocs.Viewer você pode renderizar TIFF para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo TIFF com caminho completo. + 3. Defina opções para renderizar o arquivo TIFF em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada TIFF + string filePath = "input.tiff"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo TIFF em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "TIFF" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tiff.ru.md b/content/viewer/net/tiff.ru.md new file mode 100644 index 00000000..b6b57084 --- /dev/null +++ b/content/viewer/net/tiff.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TIFF API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения TIFF в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "TIFF средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла TIFF в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла TIFF в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать TIFF в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл TIFF с полным путем. + 3. Установите параметры для преобразования файла TIFF в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл TIFF + string filePath = "input.tiff"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл TIFF в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "TIFF" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tiff.th.md b/content/viewer/net/tiff.th.md new file mode 100644 index 00000000..8ddce291 --- /dev/null +++ b/content/viewer/net/tiff.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TIFF Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง TIFF ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ TIFF สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ TIFF ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ TIFF ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล TIFF เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ TIFF ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ TIFF เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต TIFF + string filePath = "input.tiff"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ TIFF เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "TIFF" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tiff.uk.md b/content/viewer/net/tiff.uk.md new file mode 100644 index 00000000..dffaafec --- /dev/null +++ b/content/viewer/net/tiff.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TIFF Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення TIFF у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів TIFF для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу TIFF у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу TIFF у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити TIFF у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл TIFF із повним шляхом. + 3. Встановіть параметри для перетворення файлу TIFF у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл TIFF + string filePath = "input.tiff"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл TIFF у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "TIFF" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tiff.vi.md b/content/viewer/net/tiff.vi.md new file mode 100644 index 00000000..f3c308b4 --- /dev/null +++ b/content/viewer/net/tiff.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET TIFF - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị TIFF trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp TIFF dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp TIFF trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp TIFF trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị TIFF thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp TIFF với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp TIFF thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp TIFF đầu vào + string filePath = "input.tiff"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp TIFF thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "TIFF" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tiff.zh.md b/content/viewer/net/tiff.zh.md new file mode 100644 index 00000000..8eb2d0ee --- /dev/null +++ b/content/viewer/net/tiff.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TIFF Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 TIFF。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 TIFF 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 TIFF 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 TIFF 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 TIFF 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 TIFF 文件。 + 3. 设置选项以将 TIFF 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 TIFF 文件 + string filePath = "input.tiff"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 TIFF 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "TIFF" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tsv.de.md b/content/viewer/net/tsv.de.md new file mode 100644 index 00000000..855b0dd0 --- /dev/null +++ b/content/viewer/net/tsv.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TSV Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von TSV in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "TSV Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von TSV-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der TSV-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie TSV in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei TSV mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei TSV im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei TSV ein + string filePath = "input.tsv"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei TSV mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "TSV" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tsv.en.md b/content/viewer/net/tsv.en.md new file mode 100644 index 00000000..6ce5a563 --- /dev/null +++ b/content/viewer/net/tsv.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TSV Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display TSV in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "TSV file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display TSV file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render TSV file in C#" + content: | + With GroupDocs.Viewer you can render TSV to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the TSV file with full path. + 3. Set options to render TSV file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input TSV file + string filePath = "input.tsv"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render TSV file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "TSV" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tsv.es.md b/content/viewer/net/tsv.es.md new file mode 100644 index 00000000..4c182f50 --- /dev/null +++ b/content/viewer/net/tsv.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TSV API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar TSV en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "TSV visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos TSV en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo TSV en C#" + content: | + Con GroupDocs.Viewer puede renderizar TSV a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo TSV con la ruta completa. + 3. Configure opciones para representar el archivo TSV en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada TSV + string filePath = "input.tsv"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo TSV a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "TSV" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tsv.fa.md b/content/viewer/net/tsv.fa.md new file mode 100644 index 00000000..c5dbf77e --- /dev/null +++ b/content/viewer/net/tsv.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TSV بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش TSV در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل TSV برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل TSV در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل TSV در C#" + content: | + با GroupDocs.Viewer می‌توانید TSV را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل TSV را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل TSV در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی TSV را تنظیم کنید + string filePath = "input.tsv"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل TSV را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "TSV" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tsv.fr.md b/content/viewer/net/tsv.fr.md new file mode 100644 index 00000000..3b3428b3 --- /dev/null +++ b/content/viewer/net/tsv.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET TSV - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher TSV dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "TSV visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier TSV dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier TSV dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer TSV au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier TSV avec le chemin complet. + 3. Définissez les options pour restituer le fichier TSV au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée TSV + string filePath = "input.tsv"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier TSV au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "TSV" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tsv.id.md b/content/viewer/net/tsv.id.md new file mode 100644 index 00000000..d7c0eaf6 --- /dev/null +++ b/content/viewer/net/tsv.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TSV Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan TSV di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "TSV penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file TSV dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file TSV di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender TSV ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file TSV dengan path lengkap. + 3. Tetapkan opsi untuk merender file TSV ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan TSV + string filePath = "input.tsv"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file TSV ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "TSV" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tsv.it.md b/content/viewer/net/tsv.it.md new file mode 100644 index 00000000..c61bb47e --- /dev/null +++ b/content/viewer/net/tsv.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET TSV: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare TSV in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file TSV per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file TSV in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file TSV in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di TSV in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file TSV con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file TSV nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input TSV + string filePath = "input.tsv"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file TSV in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "TSV" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tsv.ja.md b/content/viewer/net/tsv.ja.md new file mode 100644 index 00000000..6eb40457 --- /dev/null +++ b/content/viewer/net/tsv.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TSV ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで TSV を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の TSV ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで TSV ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で TSV ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で TSV を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、TSV ファイルをフルパスでロードします。 + 3. TSV ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 TSV ファイルを設定する + string filePath = "input.tsv"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた TSV ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "TSV" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tsv.ko.md b/content/viewer/net/tsv.ko.md new file mode 100644 index 00000000..fdd59e69 --- /dev/null +++ b/content/viewer/net/tsv.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TSV 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 TSV을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 TSV 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 TSV 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 TSV 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 TSV을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 TSV 파일을 로드합니다. + 3. TSV 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 TSV 파일 설정 + string filePath = "input.tsv"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 TSV 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "TSV" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tsv.pt.md b/content/viewer/net/tsv.pt.md new file mode 100644 index 00000000..d56dbc1e --- /dev/null +++ b/content/viewer/net/tsv.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TSV API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir TSV em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos TSV para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos TSV em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo TSV em C#" + content: | + Com GroupDocs.Viewer você pode renderizar TSV para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo TSV com caminho completo. + 3. Defina opções para renderizar o arquivo TSV em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada TSV + string filePath = "input.tsv"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo TSV em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "TSV" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tsv.ru.md b/content/viewer/net/tsv.ru.md new file mode 100644 index 00000000..bc6636cb --- /dev/null +++ b/content/viewer/net/tsv.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TSV API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения TSV в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "TSV средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла TSV в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла TSV в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать TSV в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл TSV с полным путем. + 3. Установите параметры для преобразования файла TSV в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл TSV + string filePath = "input.tsv"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл TSV в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "TSV" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tsv.th.md b/content/viewer/net/tsv.th.md new file mode 100644 index 00000000..4921b5fc --- /dev/null +++ b/content/viewer/net/tsv.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TSV Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง TSV ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ TSV สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ TSV ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ TSV ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล TSV เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ TSV ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ TSV เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต TSV + string filePath = "input.tsv"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ TSV เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "TSV" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tsv.uk.md b/content/viewer/net/tsv.uk.md new file mode 100644 index 00000000..808d1274 --- /dev/null +++ b/content/viewer/net/tsv.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TSV Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення TSV у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів TSV для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу TSV у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу TSV у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити TSV у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл TSV із повним шляхом. + 3. Встановіть параметри для перетворення файлу TSV у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл TSV + string filePath = "input.tsv"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл TSV у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "TSV" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tsv.vi.md b/content/viewer/net/tsv.vi.md new file mode 100644 index 00000000..55c868ac --- /dev/null +++ b/content/viewer/net/tsv.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET TSV - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị TSV trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp TSV dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp TSV trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp TSV trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị TSV thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp TSV với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp TSV thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp TSV đầu vào + string filePath = "input.tsv"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp TSV thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "TSV" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/tsv.zh.md b/content/viewer/net/tsv.zh.md new file mode 100644 index 00000000..6fca06a7 --- /dev/null +++ b/content/viewer/net/tsv.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TSV Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 TSV。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 TSV 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 TSV 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 TSV 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 TSV 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 TSV 文件。 + 3. 设置选项以将 TSV 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 TSV 文件 + string filePath = "input.tsv"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 TSV 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "TSV" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/txt.de.md b/content/viewer/net/txt.de.md new file mode 100644 index 00000000..aea824d0 --- /dev/null +++ b/content/viewer/net/txt.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TXT Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von TXT in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "TXT Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von TXT-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der TXT-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie TXT in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei TXT mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei TXT im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei TXT ein + string filePath = "input.txt"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei TXT mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "TXT" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/txt.en.md b/content/viewer/net/txt.en.md new file mode 100644 index 00000000..265f4538 --- /dev/null +++ b/content/viewer/net/txt.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TXT Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display TXT in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "TXT file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display TXT file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render TXT file in C#" + content: | + With GroupDocs.Viewer you can render TXT to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the TXT file with full path. + 3. Set options to render TXT file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input TXT file + string filePath = "input.txt"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render TXT file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "TXT" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/txt.es.md b/content/viewer/net/txt.es.md new file mode 100644 index 00000000..1b143d70 --- /dev/null +++ b/content/viewer/net/txt.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TXT API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar TXT en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "TXT visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos TXT en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo TXT en C#" + content: | + Con GroupDocs.Viewer puede renderizar TXT a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo TXT con la ruta completa. + 3. Configure opciones para representar el archivo TXT en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada TXT + string filePath = "input.txt"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo TXT a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "TXT" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/txt.fa.md b/content/viewer/net/txt.fa.md new file mode 100644 index 00000000..fabd70e3 --- /dev/null +++ b/content/viewer/net/txt.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TXT بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش TXT در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل TXT برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل TXT در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل TXT در C#" + content: | + با GroupDocs.Viewer می‌توانید TXT را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل TXT را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل TXT در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی TXT را تنظیم کنید + string filePath = "input.txt"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل TXT را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "TXT" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/txt.fr.md b/content/viewer/net/txt.fr.md new file mode 100644 index 00000000..cee4e4dd --- /dev/null +++ b/content/viewer/net/txt.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET TXT - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher TXT dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "TXT visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier TXT dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier TXT dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer TXT au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier TXT avec le chemin complet. + 3. Définissez les options pour restituer le fichier TXT au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée TXT + string filePath = "input.txt"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier TXT au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "TXT" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/txt.id.md b/content/viewer/net/txt.id.md new file mode 100644 index 00000000..8a666026 --- /dev/null +++ b/content/viewer/net/txt.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TXT Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan TXT di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "TXT penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file TXT dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file TXT di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender TXT ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file TXT dengan path lengkap. + 3. Tetapkan opsi untuk merender file TXT ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan TXT + string filePath = "input.txt"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file TXT ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "TXT" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/txt.it.md b/content/viewer/net/txt.it.md new file mode 100644 index 00000000..75f5b53c --- /dev/null +++ b/content/viewer/net/txt.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET TXT: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare TXT in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file TXT per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file TXT in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file TXT in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di TXT in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file TXT con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file TXT nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input TXT + string filePath = "input.txt"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file TXT in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "TXT" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/txt.ja.md b/content/viewer/net/txt.ja.md new file mode 100644 index 00000000..bcd9aaec --- /dev/null +++ b/content/viewer/net/txt.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TXT ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで TXT を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の TXT ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで TXT ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で TXT ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で TXT を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、TXT ファイルをフルパスでロードします。 + 3. TXT ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 TXT ファイルを設定する + string filePath = "input.txt"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた TXT ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "TXT" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/txt.ko.md b/content/viewer/net/txt.ko.md new file mode 100644 index 00000000..3cb9f402 --- /dev/null +++ b/content/viewer/net/txt.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TXT 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 TXT을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 TXT 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 TXT 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 TXT 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 TXT을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 TXT 파일을 로드합니다. + 3. TXT 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 TXT 파일 설정 + string filePath = "input.txt"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 TXT 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "TXT" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/txt.pt.md b/content/viewer/net/txt.pt.md new file mode 100644 index 00000000..6573b2c4 --- /dev/null +++ b/content/viewer/net/txt.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TXT API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir TXT em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos TXT para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos TXT em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo TXT em C#" + content: | + Com GroupDocs.Viewer você pode renderizar TXT para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo TXT com caminho completo. + 3. Defina opções para renderizar o arquivo TXT em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada TXT + string filePath = "input.txt"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo TXT em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "TXT" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/txt.ru.md b/content/viewer/net/txt.ru.md new file mode 100644 index 00000000..67a4317f --- /dev/null +++ b/content/viewer/net/txt.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TXT API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения TXT в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "TXT средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла TXT в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла TXT в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать TXT в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл TXT с полным путем. + 3. Установите параметры для преобразования файла TXT в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл TXT + string filePath = "input.txt"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл TXT в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "TXT" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/txt.th.md b/content/viewer/net/txt.th.md new file mode 100644 index 00000000..b1f1c7d9 --- /dev/null +++ b/content/viewer/net/txt.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TXT Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง TXT ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ TXT สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ TXT ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ TXT ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล TXT เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ TXT ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ TXT เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต TXT + string filePath = "input.txt"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ TXT เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "TXT" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/txt.uk.md b/content/viewer/net/txt.uk.md new file mode 100644 index 00000000..b4d58b26 --- /dev/null +++ b/content/viewer/net/txt.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TXT Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення TXT у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів TXT для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу TXT у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу TXT у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити TXT у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл TXT із повним шляхом. + 3. Встановіть параметри для перетворення файлу TXT у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл TXT + string filePath = "input.txt"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл TXT у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "TXT" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/txt.vi.md b/content/viewer/net/txt.vi.md new file mode 100644 index 00000000..46f79376 --- /dev/null +++ b/content/viewer/net/txt.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET TXT - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị TXT trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp TXT dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp TXT trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp TXT trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị TXT thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp TXT với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp TXT thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp TXT đầu vào + string filePath = "input.txt"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp TXT thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "TXT" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/txt.zh.md b/content/viewer/net/txt.zh.md new file mode 100644 index 00000000..97daef16 --- /dev/null +++ b/content/viewer/net/txt.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TXT Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 TXT。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 TXT 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 TXT 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 TXT 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 TXT 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 TXT 文件。 + 3. 设置选项以将 TXT 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 TXT 文件 + string filePath = "input.txt"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 TXT 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "TXT" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/txz.de.md b/content/viewer/net/txz.de.md new file mode 100644 index 00000000..f6c65fd5 --- /dev/null +++ b/content/viewer/net/txz.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TXZ Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von TXZ in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "TXZ Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von TXZ-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der TXZ-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie TXZ in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei TXZ mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei TXZ im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei TXZ ein + string filePath = "input.txz"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei TXZ mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "TXZ" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/txz.en.md b/content/viewer/net/txz.en.md new file mode 100644 index 00000000..3010831b --- /dev/null +++ b/content/viewer/net/txz.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TXZ Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display TXZ in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "TXZ file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display TXZ file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render TXZ file in C#" + content: | + With GroupDocs.Viewer you can render TXZ to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the TXZ file with full path. + 3. Set options to render TXZ file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input TXZ file + string filePath = "input.txz"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render TXZ file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "TXZ" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/txz.es.md b/content/viewer/net/txz.es.md new file mode 100644 index 00000000..ab5bcb07 --- /dev/null +++ b/content/viewer/net/txz.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TXZ API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar TXZ en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "TXZ visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos TXZ en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo TXZ en C#" + content: | + Con GroupDocs.Viewer puede renderizar TXZ a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo TXZ con la ruta completa. + 3. Configure opciones para representar el archivo TXZ en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada TXZ + string filePath = "input.txz"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo TXZ a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "TXZ" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/txz.fa.md b/content/viewer/net/txz.fa.md new file mode 100644 index 00000000..bbfe37a6 --- /dev/null +++ b/content/viewer/net/txz.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TXZ بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش TXZ در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل TXZ برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل TXZ در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل TXZ در C#" + content: | + با GroupDocs.Viewer می‌توانید TXZ را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل TXZ را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل TXZ در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی TXZ را تنظیم کنید + string filePath = "input.txz"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل TXZ را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "TXZ" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/txz.fr.md b/content/viewer/net/txz.fr.md new file mode 100644 index 00000000..298c13bf --- /dev/null +++ b/content/viewer/net/txz.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET TXZ - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher TXZ dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "TXZ visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier TXZ dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier TXZ dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer TXZ au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier TXZ avec le chemin complet. + 3. Définissez les options pour restituer le fichier TXZ au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée TXZ + string filePath = "input.txz"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier TXZ au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "TXZ" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/txz.id.md b/content/viewer/net/txz.id.md new file mode 100644 index 00000000..ed7bcb05 --- /dev/null +++ b/content/viewer/net/txz.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TXZ Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan TXZ di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "TXZ penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file TXZ dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file TXZ di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender TXZ ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file TXZ dengan path lengkap. + 3. Tetapkan opsi untuk merender file TXZ ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan TXZ + string filePath = "input.txz"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file TXZ ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "TXZ" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/txz.it.md b/content/viewer/net/txz.it.md new file mode 100644 index 00000000..f430a85a --- /dev/null +++ b/content/viewer/net/txz.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET TXZ: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare TXZ in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file TXZ per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file TXZ in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file TXZ in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di TXZ in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file TXZ con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file TXZ nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input TXZ + string filePath = "input.txz"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file TXZ in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "TXZ" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/txz.ja.md b/content/viewer/net/txz.ja.md new file mode 100644 index 00000000..2d6a2fb8 --- /dev/null +++ b/content/viewer/net/txz.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TXZ ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで TXZ を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の TXZ ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで TXZ ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で TXZ ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で TXZ を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、TXZ ファイルをフルパスでロードします。 + 3. TXZ ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 TXZ ファイルを設定する + string filePath = "input.txz"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた TXZ ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "TXZ" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/txz.ko.md b/content/viewer/net/txz.ko.md new file mode 100644 index 00000000..f7771028 --- /dev/null +++ b/content/viewer/net/txz.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TXZ 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 TXZ을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 TXZ 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 TXZ 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 TXZ 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 TXZ을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 TXZ 파일을 로드합니다. + 3. TXZ 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 TXZ 파일 설정 + string filePath = "input.txz"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 TXZ 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "TXZ" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/txz.pt.md b/content/viewer/net/txz.pt.md new file mode 100644 index 00000000..c3d46799 --- /dev/null +++ b/content/viewer/net/txz.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TXZ API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir TXZ em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos TXZ para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos TXZ em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo TXZ em C#" + content: | + Com GroupDocs.Viewer você pode renderizar TXZ para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo TXZ com caminho completo. + 3. Defina opções para renderizar o arquivo TXZ em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada TXZ + string filePath = "input.txz"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo TXZ em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "TXZ" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/txz.ru.md b/content/viewer/net/txz.ru.md new file mode 100644 index 00000000..af3af227 --- /dev/null +++ b/content/viewer/net/txz.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TXZ API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения TXZ в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "TXZ средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла TXZ в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла TXZ в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать TXZ в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл TXZ с полным путем. + 3. Установите параметры для преобразования файла TXZ в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл TXZ + string filePath = "input.txz"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл TXZ в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "TXZ" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/txz.th.md b/content/viewer/net/txz.th.md new file mode 100644 index 00000000..b73a1063 --- /dev/null +++ b/content/viewer/net/txz.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TXZ Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง TXZ ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ TXZ สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ TXZ ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ TXZ ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล TXZ เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ TXZ ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ TXZ เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต TXZ + string filePath = "input.txz"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ TXZ เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "TXZ" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/txz.uk.md b/content/viewer/net/txz.uk.md new file mode 100644 index 00000000..95e207de --- /dev/null +++ b/content/viewer/net/txz.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TXZ Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення TXZ у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів TXZ для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу TXZ у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу TXZ у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити TXZ у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл TXZ із повним шляхом. + 3. Встановіть параметри для перетворення файлу TXZ у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл TXZ + string filePath = "input.txz"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл TXZ у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "TXZ" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/txz.vi.md b/content/viewer/net/txz.vi.md new file mode 100644 index 00000000..996f095f --- /dev/null +++ b/content/viewer/net/txz.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET TXZ - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị TXZ trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp TXZ dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp TXZ trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp TXZ trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị TXZ thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp TXZ với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp TXZ thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp TXZ đầu vào + string filePath = "input.txz"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp TXZ thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "TXZ" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/txz.zh.md b/content/viewer/net/txz.zh.md new file mode 100644 index 00000000..e0097d87 --- /dev/null +++ b/content/viewer/net/txz.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET TXZ Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 TXZ。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 TXZ 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 TXZ 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 TXZ 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 TXZ 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 TXZ 文件。 + 3. 设置选项以将 TXZ 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 TXZ 文件 + string filePath = "input.txz"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 TXZ 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "TXZ" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vb.de.md b/content/viewer/net/vb.de.md new file mode 100644 index 00000000..22cc3a16 --- /dev/null +++ b/content/viewer/net/vb.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VB Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VB in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "VB Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VB-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der VB-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie VB in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei VB mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei VB im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei VB ein + string filePath = "input.vb"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei VB mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "VB" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vb.en.md b/content/viewer/net/vb.en.md new file mode 100644 index 00000000..a41736a5 --- /dev/null +++ b/content/viewer/net/vb.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VB Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display VB in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "VB file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display VB file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render VB file in C#" + content: | + With GroupDocs.Viewer you can render VB to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the VB file with full path. + 3. Set options to render VB file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input VB file + string filePath = "input.vb"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render VB file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "VB" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vb.es.md b/content/viewer/net/vb.es.md new file mode 100644 index 00000000..1eaffda1 --- /dev/null +++ b/content/viewer/net/vb.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VB API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar VB en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "VB visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos VB en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo VB en C#" + content: | + Con GroupDocs.Viewer puede renderizar VB a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo VB con la ruta completa. + 3. Configure opciones para representar el archivo VB en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada VB + string filePath = "input.vb"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo VB a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "VB" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vb.fa.md b/content/viewer/net/vb.fa.md new file mode 100644 index 00000000..4239203f --- /dev/null +++ b/content/viewer/net/vb.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VB بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش VB در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل VB برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل VB در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل VB در C#" + content: | + با GroupDocs.Viewer می‌توانید VB را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل VB را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل VB در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی VB را تنظیم کنید + string filePath = "input.vb"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل VB را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "VB" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vb.fr.md b/content/viewer/net/vb.fr.md new file mode 100644 index 00000000..13728663 --- /dev/null +++ b/content/viewer/net/vb.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET VB - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher VB dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "VB visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier VB dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier VB dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer VB au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier VB avec le chemin complet. + 3. Définissez les options pour restituer le fichier VB au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée VB + string filePath = "input.vb"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier VB au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "VB" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vb.id.md b/content/viewer/net/vb.id.md new file mode 100644 index 00000000..76aa8707 --- /dev/null +++ b/content/viewer/net/vb.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VB Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan VB di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "VB penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file VB dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file VB di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender VB ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file VB dengan path lengkap. + 3. Tetapkan opsi untuk merender file VB ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan VB + string filePath = "input.vb"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file VB ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "VB" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vb.it.md b/content/viewer/net/vb.it.md new file mode 100644 index 00000000..302b616c --- /dev/null +++ b/content/viewer/net/vb.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET VB: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare VB in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file VB per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file VB in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file VB in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di VB in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file VB con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file VB nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input VB + string filePath = "input.vb"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file VB in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "VB" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vb.ja.md b/content/viewer/net/vb.ja.md new file mode 100644 index 00000000..79712cde --- /dev/null +++ b/content/viewer/net/vb.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VB ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VB を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の VB ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VB ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で VB ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で VB を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、VB ファイルをフルパスでロードします。 + 3. VB ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 VB ファイルを設定する + string filePath = "input.vb"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた VB ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "VB" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vb.ko.md b/content/viewer/net/vb.ko.md new file mode 100644 index 00000000..d49e87ef --- /dev/null +++ b/content/viewer/net/vb.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VB 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VB을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 VB 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VB 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 VB 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 VB을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 VB 파일을 로드합니다. + 3. VB 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 VB 파일 설정 + string filePath = "input.vb"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 VB 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "VB" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vb.pt.md b/content/viewer/net/vb.pt.md new file mode 100644 index 00000000..ff8d33c8 --- /dev/null +++ b/content/viewer/net/vb.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VB API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir VB em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos VB para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos VB em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo VB em C#" + content: | + Com GroupDocs.Viewer você pode renderizar VB para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo VB com caminho completo. + 3. Defina opções para renderizar o arquivo VB em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada VB + string filePath = "input.vb"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo VB em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "VB" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vb.ru.md b/content/viewer/net/vb.ru.md new file mode 100644 index 00000000..ef6fc39b --- /dev/null +++ b/content/viewer/net/vb.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VB API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения VB в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "VB средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла VB в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла VB в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать VB в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл VB с полным путем. + 3. Установите параметры для преобразования файла VB в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл VB + string filePath = "input.vb"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл VB в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "VB" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vb.th.md b/content/viewer/net/vb.th.md new file mode 100644 index 00000000..8ef9880e --- /dev/null +++ b/content/viewer/net/vb.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VB Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง VB ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ VB สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ VB ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ VB ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล VB เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ VB ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ VB เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต VB + string filePath = "input.vb"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ VB เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "VB" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vb.uk.md b/content/viewer/net/vb.uk.md new file mode 100644 index 00000000..859c14c1 --- /dev/null +++ b/content/viewer/net/vb.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VB Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення VB у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів VB для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу VB у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу VB у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити VB у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл VB із повним шляхом. + 3. Встановіть параметри для перетворення файлу VB у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл VB + string filePath = "input.vb"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл VB у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "VB" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vb.vi.md b/content/viewer/net/vb.vi.md new file mode 100644 index 00000000..53e89bab --- /dev/null +++ b/content/viewer/net/vb.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET VB - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị VB trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp VB dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp VB trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp VB trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị VB thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp VB với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp VB thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp VB đầu vào + string filePath = "input.vb"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp VB thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "VB" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vb.zh.md b/content/viewer/net/vb.zh.md new file mode 100644 index 00000000..b77aa079 --- /dev/null +++ b/content/viewer/net/vb.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VB Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VB。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 VB 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VB 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 VB 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 VB 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 VB 文件。 + 3. 设置选项以将 VB 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 VB 文件 + string filePath = "input.vb"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 VB 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "VB" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vcard.de.md b/content/viewer/net/vcard.de.md new file mode 100644 index 00000000..e55b0890 --- /dev/null +++ b/content/viewer/net/vcard.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET vCard Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von vCard in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "vCard Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von vCard-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der vCard-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie vCard in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei vCard mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei vCard im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei vCard ein + string filePath = "input.vcf"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei vCard mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "vCard" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vcard.en.md b/content/viewer/net/vcard.en.md new file mode 100644 index 00000000..f0a76558 --- /dev/null +++ b/content/viewer/net/vcard.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET vCard Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display vCard in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "vCard file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display vCard file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render vCard file in C#" + content: | + With GroupDocs.Viewer you can render vCard to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the vCard file with full path. + 3. Set options to render vCard file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input vCard file + string filePath = "input.vcf"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render vCard file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "vCard" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vcard.es.md b/content/viewer/net/vcard.es.md new file mode 100644 index 00000000..0b9d7a70 --- /dev/null +++ b/content/viewer/net/vcard.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET vCard API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar vCard en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "vCard visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos vCard en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo vCard en C#" + content: | + Con GroupDocs.Viewer puede renderizar vCard a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo vCard con la ruta completa. + 3. Configure opciones para representar el archivo vCard en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada vCard + string filePath = "input.vcf"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo vCard a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "vCard" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vcard.fa.md b/content/viewer/net/vcard.fa.md new file mode 100644 index 00000000..3fd6fc9e --- /dev/null +++ b/content/viewer/net/vcard.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET vCard بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش vCard در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل vCard برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل vCard در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل vCard در C#" + content: | + با GroupDocs.Viewer می‌توانید vCard را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل vCard را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل vCard در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی vCard را تنظیم کنید + string filePath = "input.vcf"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل vCard را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "vCard" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vcard.fr.md b/content/viewer/net/vcard.fr.md new file mode 100644 index 00000000..6d7e0c53 --- /dev/null +++ b/content/viewer/net/vcard.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET vCard - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher vCard dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "vCard visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier vCard dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier vCard dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer vCard au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier vCard avec le chemin complet. + 3. Définissez les options pour restituer le fichier vCard au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée vCard + string filePath = "input.vcf"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier vCard au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "vCard" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vcard.id.md b/content/viewer/net/vcard.id.md new file mode 100644 index 00000000..734e981d --- /dev/null +++ b/content/viewer/net/vcard.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET vCard Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan vCard di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "vCard penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file vCard dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file vCard di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender vCard ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file vCard dengan path lengkap. + 3. Tetapkan opsi untuk merender file vCard ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan vCard + string filePath = "input.vcf"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file vCard ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "vCard" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vcard.it.md b/content/viewer/net/vcard.it.md new file mode 100644 index 00000000..f2d18d70 --- /dev/null +++ b/content/viewer/net/vcard.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET vCard: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare vCard in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file vCard per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file vCard in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file vCard in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di vCard in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file vCard con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file vCard nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input vCard + string filePath = "input.vcf"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file vCard in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "vCard" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vcard.ja.md b/content/viewer/net/vcard.ja.md new file mode 100644 index 00000000..607f7538 --- /dev/null +++ b/content/viewer/net/vcard.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET vCard ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで vCard を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の vCard ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで vCard ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で vCard ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で vCard を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、vCard ファイルをフルパスでロードします。 + 3. vCard ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 vCard ファイルを設定する + string filePath = "input.vcf"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた vCard ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "vCard" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vcard.ko.md b/content/viewer/net/vcard.ko.md new file mode 100644 index 00000000..8c5d8b6f --- /dev/null +++ b/content/viewer/net/vcard.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET vCard 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 vCard을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 vCard 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 vCard 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 vCard 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 vCard을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 vCard 파일을 로드합니다. + 3. vCard 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 vCard 파일 설정 + string filePath = "input.vcf"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 vCard 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "vCard" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vcard.pt.md b/content/viewer/net/vcard.pt.md new file mode 100644 index 00000000..9683486a --- /dev/null +++ b/content/viewer/net/vcard.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET vCard API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir vCard em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos vCard para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos vCard em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo vCard em C#" + content: | + Com GroupDocs.Viewer você pode renderizar vCard para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo vCard com caminho completo. + 3. Defina opções para renderizar o arquivo vCard em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada vCard + string filePath = "input.vcf"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo vCard em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "vCard" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vcard.ru.md b/content/viewer/net/vcard.ru.md new file mode 100644 index 00000000..432df7ab --- /dev/null +++ b/content/viewer/net/vcard.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET vCard API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения vCard в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "vCard средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла vCard в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла vCard в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать vCard в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл vCard с полным путем. + 3. Установите параметры для преобразования файла vCard в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл vCard + string filePath = "input.vcf"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл vCard в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "vCard" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vcard.th.md b/content/viewer/net/vcard.th.md new file mode 100644 index 00000000..f97010db --- /dev/null +++ b/content/viewer/net/vcard.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET vCard Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง vCard ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ vCard สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ vCard ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ vCard ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล vCard เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ vCard ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ vCard เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต vCard + string filePath = "input.vcf"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ vCard เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "vCard" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vcard.uk.md b/content/viewer/net/vcard.uk.md new file mode 100644 index 00000000..8858b4a3 --- /dev/null +++ b/content/viewer/net/vcard.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET vCard Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення vCard у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів vCard для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу vCard у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу vCard у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити vCard у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл vCard із повним шляхом. + 3. Встановіть параметри для перетворення файлу vCard у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл vCard + string filePath = "input.vcf"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл vCard у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "vCard" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vcard.vi.md b/content/viewer/net/vcard.vi.md new file mode 100644 index 00000000..8a0fd955 --- /dev/null +++ b/content/viewer/net/vcard.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET vCard - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị vCard trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp vCard dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp vCard trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp vCard trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị vCard thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp vCard với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp vCard thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp vCard đầu vào + string filePath = "input.vcf"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp vCard thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "vCard" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vcard.zh.md b/content/viewer/net/vcard.zh.md new file mode 100644 index 00000000..0c93879b --- /dev/null +++ b/content/viewer/net/vcard.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET vCard Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 vCard。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 vCard 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 vCard 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 vCard 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 vCard 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 vCard 文件。 + 3. 设置选项以将 vCard 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 vCard 文件 + string filePath = "input.vcf"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 vCard 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "vCard" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vcf.de.md b/content/viewer/net/vcf.de.md new file mode 100644 index 00000000..8fa8d8e5 --- /dev/null +++ b/content/viewer/net/vcf.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VCF Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VCF in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "VCF Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VCF-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der VCF-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie VCF in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei VCF mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei VCF im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei VCF ein + string filePath = "input.vcf"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei VCF mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "VCF" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vcf.en.md b/content/viewer/net/vcf.en.md new file mode 100644 index 00000000..32701e81 --- /dev/null +++ b/content/viewer/net/vcf.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VCF Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display VCF in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "VCF file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display VCF file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render VCF file in C#" + content: | + With GroupDocs.Viewer you can render VCF to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the VCF file with full path. + 3. Set options to render VCF file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input VCF file + string filePath = "input.vcf"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render VCF file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "VCF" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vcf.es.md b/content/viewer/net/vcf.es.md new file mode 100644 index 00000000..25a97d68 --- /dev/null +++ b/content/viewer/net/vcf.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VCF API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar VCF en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "VCF visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos VCF en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo VCF en C#" + content: | + Con GroupDocs.Viewer puede renderizar VCF a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo VCF con la ruta completa. + 3. Configure opciones para representar el archivo VCF en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada VCF + string filePath = "input.vcf"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo VCF a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "VCF" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vcf.fa.md b/content/viewer/net/vcf.fa.md new file mode 100644 index 00000000..2261bb29 --- /dev/null +++ b/content/viewer/net/vcf.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VCF بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش VCF در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل VCF برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل VCF در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل VCF در C#" + content: | + با GroupDocs.Viewer می‌توانید VCF را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل VCF را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل VCF در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی VCF را تنظیم کنید + string filePath = "input.vcf"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل VCF را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "VCF" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vcf.fr.md b/content/viewer/net/vcf.fr.md new file mode 100644 index 00000000..ed32b730 --- /dev/null +++ b/content/viewer/net/vcf.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET VCF - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher VCF dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "VCF visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier VCF dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier VCF dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer VCF au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier VCF avec le chemin complet. + 3. Définissez les options pour restituer le fichier VCF au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée VCF + string filePath = "input.vcf"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier VCF au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "VCF" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vcf.id.md b/content/viewer/net/vcf.id.md new file mode 100644 index 00000000..b36285f0 --- /dev/null +++ b/content/viewer/net/vcf.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VCF Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan VCF di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "VCF penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file VCF dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file VCF di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender VCF ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file VCF dengan path lengkap. + 3. Tetapkan opsi untuk merender file VCF ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan VCF + string filePath = "input.vcf"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file VCF ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "VCF" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vcf.it.md b/content/viewer/net/vcf.it.md new file mode 100644 index 00000000..c52d9399 --- /dev/null +++ b/content/viewer/net/vcf.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET VCF: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare VCF in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file VCF per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file VCF in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file VCF in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di VCF in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file VCF con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file VCF nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input VCF + string filePath = "input.vcf"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file VCF in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "VCF" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vcf.ja.md b/content/viewer/net/vcf.ja.md new file mode 100644 index 00000000..3bc89c6f --- /dev/null +++ b/content/viewer/net/vcf.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VCF ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VCF を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の VCF ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VCF ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で VCF ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で VCF を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、VCF ファイルをフルパスでロードします。 + 3. VCF ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 VCF ファイルを設定する + string filePath = "input.vcf"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた VCF ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "VCF" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vcf.ko.md b/content/viewer/net/vcf.ko.md new file mode 100644 index 00000000..7e997a4e --- /dev/null +++ b/content/viewer/net/vcf.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VCF 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VCF을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 VCF 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VCF 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 VCF 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 VCF을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 VCF 파일을 로드합니다. + 3. VCF 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 VCF 파일 설정 + string filePath = "input.vcf"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 VCF 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "VCF" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vcf.pt.md b/content/viewer/net/vcf.pt.md new file mode 100644 index 00000000..31442fe8 --- /dev/null +++ b/content/viewer/net/vcf.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VCF API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir VCF em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos VCF para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos VCF em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo VCF em C#" + content: | + Com GroupDocs.Viewer você pode renderizar VCF para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo VCF com caminho completo. + 3. Defina opções para renderizar o arquivo VCF em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada VCF + string filePath = "input.vcf"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo VCF em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "VCF" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vcf.ru.md b/content/viewer/net/vcf.ru.md new file mode 100644 index 00000000..d7dbb846 --- /dev/null +++ b/content/viewer/net/vcf.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VCF API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения VCF в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "VCF средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла VCF в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла VCF в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать VCF в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл VCF с полным путем. + 3. Установите параметры для преобразования файла VCF в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл VCF + string filePath = "input.vcf"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл VCF в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "VCF" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vcf.th.md b/content/viewer/net/vcf.th.md new file mode 100644 index 00000000..fbfec679 --- /dev/null +++ b/content/viewer/net/vcf.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VCF Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง VCF ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ VCF สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ VCF ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ VCF ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล VCF เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ VCF ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ VCF เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต VCF + string filePath = "input.vcf"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ VCF เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "VCF" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vcf.uk.md b/content/viewer/net/vcf.uk.md new file mode 100644 index 00000000..f4249232 --- /dev/null +++ b/content/viewer/net/vcf.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VCF Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення VCF у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів VCF для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу VCF у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу VCF у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити VCF у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл VCF із повним шляхом. + 3. Встановіть параметри для перетворення файлу VCF у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл VCF + string filePath = "input.vcf"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл VCF у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "VCF" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vcf.vi.md b/content/viewer/net/vcf.vi.md new file mode 100644 index 00000000..b5225d48 --- /dev/null +++ b/content/viewer/net/vcf.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET VCF - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị VCF trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp VCF dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp VCF trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp VCF trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị VCF thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp VCF với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp VCF thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp VCF đầu vào + string filePath = "input.vcf"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp VCF thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "VCF" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vcf.zh.md b/content/viewer/net/vcf.zh.md new file mode 100644 index 00000000..37d45602 --- /dev/null +++ b/content/viewer/net/vcf.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VCF Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VCF。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 VCF 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VCF 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 VCF 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 VCF 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 VCF 文件。 + 3. 设置选项以将 VCF 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 VCF 文件 + string filePath = "input.vcf"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 VCF 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "VCF" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vdw.de.md b/content/viewer/net/vdw.de.md new file mode 100644 index 00000000..34bd42e0 --- /dev/null +++ b/content/viewer/net/vdw.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VDW Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VDW in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "VDW Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VDW-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der VDW-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie VDW in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei VDW mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei VDW im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei VDW ein + string filePath = "input.vdw"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei VDW mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "VDW" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vdw.en.md b/content/viewer/net/vdw.en.md new file mode 100644 index 00000000..0da61765 --- /dev/null +++ b/content/viewer/net/vdw.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VDW Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display VDW in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "VDW file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display VDW file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render VDW file in C#" + content: | + With GroupDocs.Viewer you can render VDW to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the VDW file with full path. + 3. Set options to render VDW file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input VDW file + string filePath = "input.vdw"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render VDW file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "VDW" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vdw.es.md b/content/viewer/net/vdw.es.md new file mode 100644 index 00000000..ba448265 --- /dev/null +++ b/content/viewer/net/vdw.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VDW API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar VDW en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "VDW visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos VDW en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo VDW en C#" + content: | + Con GroupDocs.Viewer puede renderizar VDW a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo VDW con la ruta completa. + 3. Configure opciones para representar el archivo VDW en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada VDW + string filePath = "input.vdw"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo VDW a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "VDW" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vdw.fa.md b/content/viewer/net/vdw.fa.md new file mode 100644 index 00000000..e76465a0 --- /dev/null +++ b/content/viewer/net/vdw.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VDW بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش VDW در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل VDW برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل VDW در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل VDW در C#" + content: | + با GroupDocs.Viewer می‌توانید VDW را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل VDW را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل VDW در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی VDW را تنظیم کنید + string filePath = "input.vdw"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل VDW را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "VDW" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vdw.fr.md b/content/viewer/net/vdw.fr.md new file mode 100644 index 00000000..4bc8a9d6 --- /dev/null +++ b/content/viewer/net/vdw.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET VDW - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher VDW dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "VDW visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier VDW dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier VDW dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer VDW au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier VDW avec le chemin complet. + 3. Définissez les options pour restituer le fichier VDW au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée VDW + string filePath = "input.vdw"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier VDW au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "VDW" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vdw.id.md b/content/viewer/net/vdw.id.md new file mode 100644 index 00000000..cf6b249f --- /dev/null +++ b/content/viewer/net/vdw.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VDW Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan VDW di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "VDW penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file VDW dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file VDW di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender VDW ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file VDW dengan path lengkap. + 3. Tetapkan opsi untuk merender file VDW ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan VDW + string filePath = "input.vdw"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file VDW ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "VDW" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vdw.it.md b/content/viewer/net/vdw.it.md new file mode 100644 index 00000000..3017ac81 --- /dev/null +++ b/content/viewer/net/vdw.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET VDW: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare VDW in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file VDW per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file VDW in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file VDW in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di VDW in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file VDW con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file VDW nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input VDW + string filePath = "input.vdw"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file VDW in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "VDW" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vdw.ja.md b/content/viewer/net/vdw.ja.md new file mode 100644 index 00000000..3135c839 --- /dev/null +++ b/content/viewer/net/vdw.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VDW ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VDW を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の VDW ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VDW ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で VDW ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で VDW を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、VDW ファイルをフルパスでロードします。 + 3. VDW ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 VDW ファイルを設定する + string filePath = "input.vdw"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた VDW ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "VDW" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vdw.ko.md b/content/viewer/net/vdw.ko.md new file mode 100644 index 00000000..95ccf343 --- /dev/null +++ b/content/viewer/net/vdw.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VDW 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VDW을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 VDW 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VDW 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 VDW 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 VDW을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 VDW 파일을 로드합니다. + 3. VDW 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 VDW 파일 설정 + string filePath = "input.vdw"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 VDW 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "VDW" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vdw.pt.md b/content/viewer/net/vdw.pt.md new file mode 100644 index 00000000..d7c116d3 --- /dev/null +++ b/content/viewer/net/vdw.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VDW API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir VDW em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos VDW para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos VDW em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo VDW em C#" + content: | + Com GroupDocs.Viewer você pode renderizar VDW para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo VDW com caminho completo. + 3. Defina opções para renderizar o arquivo VDW em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada VDW + string filePath = "input.vdw"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo VDW em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "VDW" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vdw.ru.md b/content/viewer/net/vdw.ru.md new file mode 100644 index 00000000..0d0baab9 --- /dev/null +++ b/content/viewer/net/vdw.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VDW API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения VDW в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "VDW средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла VDW в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла VDW в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать VDW в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл VDW с полным путем. + 3. Установите параметры для преобразования файла VDW в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл VDW + string filePath = "input.vdw"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл VDW в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "VDW" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vdw.th.md b/content/viewer/net/vdw.th.md new file mode 100644 index 00000000..ce6cf4c8 --- /dev/null +++ b/content/viewer/net/vdw.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VDW Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง VDW ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ VDW สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ VDW ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ VDW ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล VDW เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ VDW ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ VDW เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต VDW + string filePath = "input.vdw"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ VDW เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "VDW" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vdw.uk.md b/content/viewer/net/vdw.uk.md new file mode 100644 index 00000000..43cbb528 --- /dev/null +++ b/content/viewer/net/vdw.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VDW Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення VDW у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів VDW для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу VDW у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу VDW у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити VDW у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл VDW із повним шляхом. + 3. Встановіть параметри для перетворення файлу VDW у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл VDW + string filePath = "input.vdw"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл VDW у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "VDW" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vdw.vi.md b/content/viewer/net/vdw.vi.md new file mode 100644 index 00000000..928c48bf --- /dev/null +++ b/content/viewer/net/vdw.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET VDW - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị VDW trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp VDW dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp VDW trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp VDW trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị VDW thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp VDW với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp VDW thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp VDW đầu vào + string filePath = "input.vdw"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp VDW thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "VDW" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vdw.zh.md b/content/viewer/net/vdw.zh.md new file mode 100644 index 00000000..f3808713 --- /dev/null +++ b/content/viewer/net/vdw.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VDW Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VDW。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 VDW 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VDW 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 VDW 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 VDW 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 VDW 文件。 + 3. 设置选项以将 VDW 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 VDW 文件 + string filePath = "input.vdw"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 VDW 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "VDW" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vdx.de.md b/content/viewer/net/vdx.de.md new file mode 100644 index 00000000..83660697 --- /dev/null +++ b/content/viewer/net/vdx.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VDX Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VDX in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "VDX Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VDX-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der VDX-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie VDX in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei VDX mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei VDX im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei VDX ein + string filePath = "input.vdx"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei VDX mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "VDX" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vdx.en.md b/content/viewer/net/vdx.en.md new file mode 100644 index 00000000..256df75a --- /dev/null +++ b/content/viewer/net/vdx.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VDX Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display VDX in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "VDX file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display VDX file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render VDX file in C#" + content: | + With GroupDocs.Viewer you can render VDX to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the VDX file with full path. + 3. Set options to render VDX file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input VDX file + string filePath = "input.vdx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render VDX file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "VDX" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vdx.es.md b/content/viewer/net/vdx.es.md new file mode 100644 index 00000000..5e41d700 --- /dev/null +++ b/content/viewer/net/vdx.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VDX API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar VDX en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "VDX visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos VDX en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo VDX en C#" + content: | + Con GroupDocs.Viewer puede renderizar VDX a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo VDX con la ruta completa. + 3. Configure opciones para representar el archivo VDX en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada VDX + string filePath = "input.vdx"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo VDX a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "VDX" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vdx.fa.md b/content/viewer/net/vdx.fa.md new file mode 100644 index 00000000..e8a2c93a --- /dev/null +++ b/content/viewer/net/vdx.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VDX بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش VDX در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل VDX برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل VDX در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل VDX در C#" + content: | + با GroupDocs.Viewer می‌توانید VDX را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل VDX را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل VDX در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی VDX را تنظیم کنید + string filePath = "input.vdx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل VDX را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "VDX" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vdx.fr.md b/content/viewer/net/vdx.fr.md new file mode 100644 index 00000000..09231a33 --- /dev/null +++ b/content/viewer/net/vdx.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET VDX - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher VDX dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "VDX visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier VDX dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier VDX dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer VDX au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier VDX avec le chemin complet. + 3. Définissez les options pour restituer le fichier VDX au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée VDX + string filePath = "input.vdx"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier VDX au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "VDX" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vdx.id.md b/content/viewer/net/vdx.id.md new file mode 100644 index 00000000..bbb4463d --- /dev/null +++ b/content/viewer/net/vdx.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VDX Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan VDX di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "VDX penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file VDX dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file VDX di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender VDX ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file VDX dengan path lengkap. + 3. Tetapkan opsi untuk merender file VDX ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan VDX + string filePath = "input.vdx"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file VDX ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "VDX" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vdx.it.md b/content/viewer/net/vdx.it.md new file mode 100644 index 00000000..fb23b6fe --- /dev/null +++ b/content/viewer/net/vdx.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET VDX: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare VDX in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file VDX per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file VDX in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file VDX in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di VDX in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file VDX con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file VDX nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input VDX + string filePath = "input.vdx"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file VDX in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "VDX" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vdx.ja.md b/content/viewer/net/vdx.ja.md new file mode 100644 index 00000000..978b055d --- /dev/null +++ b/content/viewer/net/vdx.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VDX ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VDX を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の VDX ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VDX ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で VDX ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で VDX を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、VDX ファイルをフルパスでロードします。 + 3. VDX ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 VDX ファイルを設定する + string filePath = "input.vdx"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた VDX ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "VDX" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vdx.ko.md b/content/viewer/net/vdx.ko.md new file mode 100644 index 00000000..43c8840d --- /dev/null +++ b/content/viewer/net/vdx.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VDX 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VDX을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 VDX 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VDX 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 VDX 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 VDX을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 VDX 파일을 로드합니다. + 3. VDX 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 VDX 파일 설정 + string filePath = "input.vdx"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 VDX 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "VDX" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vdx.pt.md b/content/viewer/net/vdx.pt.md new file mode 100644 index 00000000..4dc85358 --- /dev/null +++ b/content/viewer/net/vdx.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VDX API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir VDX em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos VDX para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos VDX em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo VDX em C#" + content: | + Com GroupDocs.Viewer você pode renderizar VDX para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo VDX com caminho completo. + 3. Defina opções para renderizar o arquivo VDX em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada VDX + string filePath = "input.vdx"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo VDX em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "VDX" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vdx.ru.md b/content/viewer/net/vdx.ru.md new file mode 100644 index 00000000..efa0feeb --- /dev/null +++ b/content/viewer/net/vdx.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VDX API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения VDX в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "VDX средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла VDX в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла VDX в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать VDX в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл VDX с полным путем. + 3. Установите параметры для преобразования файла VDX в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл VDX + string filePath = "input.vdx"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл VDX в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "VDX" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vdx.th.md b/content/viewer/net/vdx.th.md new file mode 100644 index 00000000..eb13ed1e --- /dev/null +++ b/content/viewer/net/vdx.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VDX Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง VDX ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ VDX สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ VDX ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ VDX ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล VDX เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ VDX ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ VDX เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต VDX + string filePath = "input.vdx"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ VDX เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "VDX" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vdx.uk.md b/content/viewer/net/vdx.uk.md new file mode 100644 index 00000000..4c2e309a --- /dev/null +++ b/content/viewer/net/vdx.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VDX Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення VDX у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів VDX для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу VDX у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу VDX у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити VDX у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл VDX із повним шляхом. + 3. Встановіть параметри для перетворення файлу VDX у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл VDX + string filePath = "input.vdx"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл VDX у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "VDX" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vdx.vi.md b/content/viewer/net/vdx.vi.md new file mode 100644 index 00000000..c7b45f81 --- /dev/null +++ b/content/viewer/net/vdx.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET VDX - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị VDX trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp VDX dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp VDX trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp VDX trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị VDX thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp VDX với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp VDX thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp VDX đầu vào + string filePath = "input.vdx"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp VDX thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "VDX" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vdx.zh.md b/content/viewer/net/vdx.zh.md new file mode 100644 index 00000000..9cf072a5 --- /dev/null +++ b/content/viewer/net/vdx.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VDX Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VDX。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 VDX 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VDX 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 VDX 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 VDX 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 VDX 文件。 + 3. 设置选项以将 VDX 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 VDX 文件 + string filePath = "input.vdx"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 VDX 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "VDX" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vim.de.md b/content/viewer/net/vim.de.md new file mode 100644 index 00000000..24844160 --- /dev/null +++ b/content/viewer/net/vim.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VIM Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VIM in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "VIM Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VIM-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der VIM-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie VIM in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei VIM mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei VIM im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei VIM ein + string filePath = "input.vim"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei VIM mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "VIM" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vim.en.md b/content/viewer/net/vim.en.md new file mode 100644 index 00000000..2dab2ed8 --- /dev/null +++ b/content/viewer/net/vim.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VIM Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display VIM in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "VIM file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display VIM file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render VIM file in C#" + content: | + With GroupDocs.Viewer you can render VIM to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the VIM file with full path. + 3. Set options to render VIM file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input VIM file + string filePath = "input.vim"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render VIM file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "VIM" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vim.es.md b/content/viewer/net/vim.es.md new file mode 100644 index 00000000..2d5553d8 --- /dev/null +++ b/content/viewer/net/vim.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VIM API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar VIM en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "VIM visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos VIM en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo VIM en C#" + content: | + Con GroupDocs.Viewer puede renderizar VIM a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo VIM con la ruta completa. + 3. Configure opciones para representar el archivo VIM en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada VIM + string filePath = "input.vim"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo VIM a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "VIM" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vim.fa.md b/content/viewer/net/vim.fa.md new file mode 100644 index 00000000..79a09e54 --- /dev/null +++ b/content/viewer/net/vim.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VIM بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش VIM در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل VIM برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل VIM در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل VIM در C#" + content: | + با GroupDocs.Viewer می‌توانید VIM را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل VIM را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل VIM در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی VIM را تنظیم کنید + string filePath = "input.vim"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل VIM را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "VIM" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vim.fr.md b/content/viewer/net/vim.fr.md new file mode 100644 index 00000000..3592ec95 --- /dev/null +++ b/content/viewer/net/vim.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET VIM - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher VIM dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "VIM visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier VIM dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier VIM dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer VIM au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier VIM avec le chemin complet. + 3. Définissez les options pour restituer le fichier VIM au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée VIM + string filePath = "input.vim"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier VIM au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "VIM" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vim.id.md b/content/viewer/net/vim.id.md new file mode 100644 index 00000000..94ec149b --- /dev/null +++ b/content/viewer/net/vim.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VIM Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan VIM di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "VIM penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file VIM dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file VIM di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender VIM ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file VIM dengan path lengkap. + 3. Tetapkan opsi untuk merender file VIM ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan VIM + string filePath = "input.vim"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file VIM ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "VIM" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vim.it.md b/content/viewer/net/vim.it.md new file mode 100644 index 00000000..721f8979 --- /dev/null +++ b/content/viewer/net/vim.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET VIM: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare VIM in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file VIM per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file VIM in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file VIM in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di VIM in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file VIM con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file VIM nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input VIM + string filePath = "input.vim"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file VIM in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "VIM" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vim.ja.md b/content/viewer/net/vim.ja.md new file mode 100644 index 00000000..d1e328c0 --- /dev/null +++ b/content/viewer/net/vim.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VIM ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VIM を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の VIM ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VIM ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で VIM ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で VIM を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、VIM ファイルをフルパスでロードします。 + 3. VIM ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 VIM ファイルを設定する + string filePath = "input.vim"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた VIM ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "VIM" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vim.ko.md b/content/viewer/net/vim.ko.md new file mode 100644 index 00000000..41e4c026 --- /dev/null +++ b/content/viewer/net/vim.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VIM 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VIM을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 VIM 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VIM 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 VIM 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 VIM을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 VIM 파일을 로드합니다. + 3. VIM 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 VIM 파일 설정 + string filePath = "input.vim"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 VIM 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "VIM" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vim.pt.md b/content/viewer/net/vim.pt.md new file mode 100644 index 00000000..3393a5b2 --- /dev/null +++ b/content/viewer/net/vim.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VIM API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir VIM em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos VIM para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos VIM em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo VIM em C#" + content: | + Com GroupDocs.Viewer você pode renderizar VIM para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo VIM com caminho completo. + 3. Defina opções para renderizar o arquivo VIM em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada VIM + string filePath = "input.vim"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo VIM em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "VIM" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vim.ru.md b/content/viewer/net/vim.ru.md new file mode 100644 index 00000000..8e9d6b60 --- /dev/null +++ b/content/viewer/net/vim.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VIM API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения VIM в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "VIM средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла VIM в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла VIM в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать VIM в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл VIM с полным путем. + 3. Установите параметры для преобразования файла VIM в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл VIM + string filePath = "input.vim"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл VIM в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "VIM" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vim.th.md b/content/viewer/net/vim.th.md new file mode 100644 index 00000000..ba69258d --- /dev/null +++ b/content/viewer/net/vim.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VIM Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง VIM ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ VIM สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ VIM ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ VIM ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล VIM เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ VIM ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ VIM เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต VIM + string filePath = "input.vim"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ VIM เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "VIM" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vim.uk.md b/content/viewer/net/vim.uk.md new file mode 100644 index 00000000..85471a94 --- /dev/null +++ b/content/viewer/net/vim.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VIM Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення VIM у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів VIM для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу VIM у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу VIM у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити VIM у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл VIM із повним шляхом. + 3. Встановіть параметри для перетворення файлу VIM у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл VIM + string filePath = "input.vim"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл VIM у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "VIM" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vim.vi.md b/content/viewer/net/vim.vi.md new file mode 100644 index 00000000..5e948d91 --- /dev/null +++ b/content/viewer/net/vim.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET VIM - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị VIM trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp VIM dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp VIM trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp VIM trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị VIM thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp VIM với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp VIM thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp VIM đầu vào + string filePath = "input.vim"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp VIM thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "VIM" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vim.zh.md b/content/viewer/net/vim.zh.md new file mode 100644 index 00000000..bed636df --- /dev/null +++ b/content/viewer/net/vim.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VIM Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VIM。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 VIM 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VIM 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 VIM 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 VIM 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 VIM 文件。 + 3. 设置选项以将 VIM 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 VIM 文件 + string filePath = "input.vim"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 VIM 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "VIM" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/visio.de.md b/content/viewer/net/visio.de.md new file mode 100644 index 00000000..e5ada33d --- /dev/null +++ b/content/viewer/net/visio.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Visio Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von Visio in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "Visio Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von Visio-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der Visio-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie Visio in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei Visio mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei Visio im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei Visio ein + string filePath = "input.vsdx"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei Visio mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "Visio" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/visio.en.md b/content/viewer/net/visio.en.md new file mode 100644 index 00000000..7f5891d0 --- /dev/null +++ b/content/viewer/net/visio.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Visio Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display Visio in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "Visio file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display Visio file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render Visio file in C#" + content: | + With GroupDocs.Viewer you can render Visio to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the Visio file with full path. + 3. Set options to render Visio file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input Visio file + string filePath = "input.vsdx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render Visio file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "Visio" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/visio.es.md b/content/viewer/net/visio.es.md new file mode 100644 index 00000000..e5f77027 --- /dev/null +++ b/content/viewer/net/visio.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Visio API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar Visio en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "Visio visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos Visio en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo Visio en C#" + content: | + Con GroupDocs.Viewer puede renderizar Visio a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo Visio con la ruta completa. + 3. Configure opciones para representar el archivo Visio en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada Visio + string filePath = "input.vsdx"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo Visio a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "Visio" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/visio.fa.md b/content/viewer/net/visio.fa.md new file mode 100644 index 00000000..814f2ec8 --- /dev/null +++ b/content/viewer/net/visio.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Visio بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش Visio در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل Visio برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل Visio در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل Visio در C#" + content: | + با GroupDocs.Viewer می‌توانید Visio را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل Visio را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل Visio در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی Visio را تنظیم کنید + string filePath = "input.vsdx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل Visio را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "Visio" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/visio.fr.md b/content/viewer/net/visio.fr.md new file mode 100644 index 00000000..2c3a3395 --- /dev/null +++ b/content/viewer/net/visio.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET Visio - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher Visio dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "Visio visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier Visio dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier Visio dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer Visio au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier Visio avec le chemin complet. + 3. Définissez les options pour restituer le fichier Visio au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée Visio + string filePath = "input.vsdx"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier Visio au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "Visio" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/visio.id.md b/content/viewer/net/visio.id.md new file mode 100644 index 00000000..5d8389ab --- /dev/null +++ b/content/viewer/net/visio.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Visio Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan Visio di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Visio penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file Visio dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file Visio di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender Visio ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file Visio dengan path lengkap. + 3. Tetapkan opsi untuk merender file Visio ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan Visio + string filePath = "input.vsdx"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file Visio ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "Visio" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/visio.it.md b/content/viewer/net/visio.it.md new file mode 100644 index 00000000..6ba754d5 --- /dev/null +++ b/content/viewer/net/visio.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET Visio: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare Visio in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file Visio per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file Visio in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file Visio in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di Visio in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file Visio con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file Visio nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input Visio + string filePath = "input.vsdx"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file Visio in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "Visio" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/visio.ja.md b/content/viewer/net/visio.ja.md new file mode 100644 index 00000000..3f72a178 --- /dev/null +++ b/content/viewer/net/visio.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Visio ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで Visio を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の Visio ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで Visio ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で Visio ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で Visio を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、Visio ファイルをフルパスでロードします。 + 3. Visio ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 Visio ファイルを設定する + string filePath = "input.vsdx"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた Visio ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "Visio" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/visio.ko.md b/content/viewer/net/visio.ko.md new file mode 100644 index 00000000..dfd643a0 --- /dev/null +++ b/content/viewer/net/visio.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Visio 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 Visio을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 Visio 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 Visio 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 Visio 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 Visio을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 Visio 파일을 로드합니다. + 3. Visio 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 Visio 파일 설정 + string filePath = "input.vsdx"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 Visio 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "Visio" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/visio.pt.md b/content/viewer/net/visio.pt.md new file mode 100644 index 00000000..d6c54242 --- /dev/null +++ b/content/viewer/net/visio.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Visio API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir Visio em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos Visio para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos Visio em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo Visio em C#" + content: | + Com GroupDocs.Viewer você pode renderizar Visio para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo Visio com caminho completo. + 3. Defina opções para renderizar o arquivo Visio em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada Visio + string filePath = "input.vsdx"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo Visio em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "Visio" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/visio.ru.md b/content/viewer/net/visio.ru.md new file mode 100644 index 00000000..7fc6ec5e --- /dev/null +++ b/content/viewer/net/visio.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Visio API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения Visio в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "Visio средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла Visio в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла Visio в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать Visio в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл Visio с полным путем. + 3. Установите параметры для преобразования файла Visio в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл Visio + string filePath = "input.vsdx"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл Visio в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "Visio" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/visio.th.md b/content/viewer/net/visio.th.md new file mode 100644 index 00000000..e23e7cd8 --- /dev/null +++ b/content/viewer/net/visio.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Visio Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง Visio ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ Visio สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ Visio ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ Visio ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล Visio เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ Visio ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ Visio เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต Visio + string filePath = "input.vsdx"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ Visio เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "Visio" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/visio.uk.md b/content/viewer/net/visio.uk.md new file mode 100644 index 00000000..402cb8dd --- /dev/null +++ b/content/viewer/net/visio.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Visio Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення Visio у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів Visio для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу Visio у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу Visio у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити Visio у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл Visio із повним шляхом. + 3. Встановіть параметри для перетворення файлу Visio у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл Visio + string filePath = "input.vsdx"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл Visio у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "Visio" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/visio.vi.md b/content/viewer/net/visio.vi.md new file mode 100644 index 00000000..db682bb2 --- /dev/null +++ b/content/viewer/net/visio.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET Visio - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị Visio trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp Visio dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp Visio trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp Visio trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị Visio thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp Visio với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp Visio thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp Visio đầu vào + string filePath = "input.vsdx"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp Visio thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "Visio" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/visio.zh.md b/content/viewer/net/visio.zh.md new file mode 100644 index 00000000..03e102fc --- /dev/null +++ b/content/viewer/net/visio.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Visio Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 Visio。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 Visio 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 Visio 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 Visio 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 Visio 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 Visio 文件。 + 3. 设置选项以将 Visio 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 Visio 文件 + string filePath = "input.vsdx"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 Visio 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "Visio" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsd.de.md b/content/viewer/net/vsd.de.md new file mode 100644 index 00000000..2f6afc90 --- /dev/null +++ b/content/viewer/net/vsd.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSD Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VSD in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "VSD Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VSD-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der VSD-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie VSD in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei VSD mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei VSD im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei VSD ein + string filePath = "input.vsd"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei VSD mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "VSD" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsd.en.md b/content/viewer/net/vsd.en.md new file mode 100644 index 00000000..d3db082e --- /dev/null +++ b/content/viewer/net/vsd.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSD Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display VSD in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "VSD file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display VSD file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render VSD file in C#" + content: | + With GroupDocs.Viewer you can render VSD to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the VSD file with full path. + 3. Set options to render VSD file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input VSD file + string filePath = "input.vsd"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render VSD file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "VSD" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsd.es.md b/content/viewer/net/vsd.es.md new file mode 100644 index 00000000..f79008ad --- /dev/null +++ b/content/viewer/net/vsd.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSD API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar VSD en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "VSD visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos VSD en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo VSD en C#" + content: | + Con GroupDocs.Viewer puede renderizar VSD a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo VSD con la ruta completa. + 3. Configure opciones para representar el archivo VSD en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada VSD + string filePath = "input.vsd"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo VSD a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "VSD" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsd.fa.md b/content/viewer/net/vsd.fa.md new file mode 100644 index 00000000..40b54869 --- /dev/null +++ b/content/viewer/net/vsd.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSD بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش VSD در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل VSD برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل VSD در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل VSD در C#" + content: | + با GroupDocs.Viewer می‌توانید VSD را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل VSD را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل VSD در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی VSD را تنظیم کنید + string filePath = "input.vsd"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل VSD را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "VSD" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsd.fr.md b/content/viewer/net/vsd.fr.md new file mode 100644 index 00000000..44da1552 --- /dev/null +++ b/content/viewer/net/vsd.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET VSD - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher VSD dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "VSD visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier VSD dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier VSD dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer VSD au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier VSD avec le chemin complet. + 3. Définissez les options pour restituer le fichier VSD au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée VSD + string filePath = "input.vsd"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier VSD au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "VSD" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsd.id.md b/content/viewer/net/vsd.id.md new file mode 100644 index 00000000..9a486de6 --- /dev/null +++ b/content/viewer/net/vsd.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSD Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan VSD di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "VSD penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file VSD dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file VSD di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender VSD ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file VSD dengan path lengkap. + 3. Tetapkan opsi untuk merender file VSD ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan VSD + string filePath = "input.vsd"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file VSD ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "VSD" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsd.it.md b/content/viewer/net/vsd.it.md new file mode 100644 index 00000000..3abb9d94 --- /dev/null +++ b/content/viewer/net/vsd.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET VSD: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare VSD in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file VSD per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file VSD in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file VSD in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di VSD in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file VSD con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file VSD nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input VSD + string filePath = "input.vsd"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file VSD in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "VSD" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsd.ja.md b/content/viewer/net/vsd.ja.md new file mode 100644 index 00000000..85185c9b --- /dev/null +++ b/content/viewer/net/vsd.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSD ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VSD を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の VSD ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VSD ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で VSD ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で VSD を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、VSD ファイルをフルパスでロードします。 + 3. VSD ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 VSD ファイルを設定する + string filePath = "input.vsd"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた VSD ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "VSD" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsd.ko.md b/content/viewer/net/vsd.ko.md new file mode 100644 index 00000000..d9bc4ef9 --- /dev/null +++ b/content/viewer/net/vsd.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSD 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VSD을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 VSD 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VSD 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 VSD 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 VSD을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 VSD 파일을 로드합니다. + 3. VSD 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 VSD 파일 설정 + string filePath = "input.vsd"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 VSD 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "VSD" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsd.pt.md b/content/viewer/net/vsd.pt.md new file mode 100644 index 00000000..6e92778c --- /dev/null +++ b/content/viewer/net/vsd.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSD API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir VSD em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos VSD para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos VSD em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo VSD em C#" + content: | + Com GroupDocs.Viewer você pode renderizar VSD para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo VSD com caminho completo. + 3. Defina opções para renderizar o arquivo VSD em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada VSD + string filePath = "input.vsd"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo VSD em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "VSD" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsd.ru.md b/content/viewer/net/vsd.ru.md new file mode 100644 index 00000000..55764c25 --- /dev/null +++ b/content/viewer/net/vsd.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSD API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения VSD в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "VSD средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла VSD в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла VSD в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать VSD в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл VSD с полным путем. + 3. Установите параметры для преобразования файла VSD в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл VSD + string filePath = "input.vsd"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл VSD в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "VSD" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsd.th.md b/content/viewer/net/vsd.th.md new file mode 100644 index 00000000..b8c93e83 --- /dev/null +++ b/content/viewer/net/vsd.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSD Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง VSD ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ VSD สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ VSD ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ VSD ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล VSD เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ VSD ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ VSD เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต VSD + string filePath = "input.vsd"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ VSD เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "VSD" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsd.uk.md b/content/viewer/net/vsd.uk.md new file mode 100644 index 00000000..1ad7250a --- /dev/null +++ b/content/viewer/net/vsd.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSD Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення VSD у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів VSD для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу VSD у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу VSD у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити VSD у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл VSD із повним шляхом. + 3. Встановіть параметри для перетворення файлу VSD у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл VSD + string filePath = "input.vsd"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл VSD у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "VSD" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsd.vi.md b/content/viewer/net/vsd.vi.md new file mode 100644 index 00000000..a0b3b327 --- /dev/null +++ b/content/viewer/net/vsd.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET VSD - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị VSD trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp VSD dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp VSD trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp VSD trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị VSD thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp VSD với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp VSD thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp VSD đầu vào + string filePath = "input.vsd"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp VSD thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "VSD" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsd.zh.md b/content/viewer/net/vsd.zh.md new file mode 100644 index 00000000..47abc4fc --- /dev/null +++ b/content/viewer/net/vsd.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSD Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VSD。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 VSD 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VSD 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 VSD 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 VSD 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 VSD 文件。 + 3. 设置选项以将 VSD 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 VSD 文件 + string filePath = "input.vsd"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 VSD 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "VSD" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsdm.de.md b/content/viewer/net/vsdm.de.md new file mode 100644 index 00000000..973718f5 --- /dev/null +++ b/content/viewer/net/vsdm.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSDM Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VSDM in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "VSDM Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VSDM-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der VSDM-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie VSDM in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei VSDM mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei VSDM im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei VSDM ein + string filePath = "input.vsdm"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei VSDM mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "VSDM" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsdm.en.md b/content/viewer/net/vsdm.en.md new file mode 100644 index 00000000..38b94ff0 --- /dev/null +++ b/content/viewer/net/vsdm.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSDM Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display VSDM in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "VSDM file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display VSDM file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render VSDM file in C#" + content: | + With GroupDocs.Viewer you can render VSDM to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the VSDM file with full path. + 3. Set options to render VSDM file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input VSDM file + string filePath = "input.vsdm"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render VSDM file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "VSDM" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsdm.es.md b/content/viewer/net/vsdm.es.md new file mode 100644 index 00000000..07b82ad3 --- /dev/null +++ b/content/viewer/net/vsdm.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSDM API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar VSDM en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "VSDM visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos VSDM en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo VSDM en C#" + content: | + Con GroupDocs.Viewer puede renderizar VSDM a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo VSDM con la ruta completa. + 3. Configure opciones para representar el archivo VSDM en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada VSDM + string filePath = "input.vsdm"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo VSDM a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "VSDM" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsdm.fa.md b/content/viewer/net/vsdm.fa.md new file mode 100644 index 00000000..70762bcc --- /dev/null +++ b/content/viewer/net/vsdm.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSDM بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش VSDM در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل VSDM برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل VSDM در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل VSDM در C#" + content: | + با GroupDocs.Viewer می‌توانید VSDM را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل VSDM را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل VSDM در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی VSDM را تنظیم کنید + string filePath = "input.vsdm"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل VSDM را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "VSDM" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsdm.fr.md b/content/viewer/net/vsdm.fr.md new file mode 100644 index 00000000..e1de9f3f --- /dev/null +++ b/content/viewer/net/vsdm.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET VSDM - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher VSDM dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "VSDM visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier VSDM dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier VSDM dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer VSDM au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier VSDM avec le chemin complet. + 3. Définissez les options pour restituer le fichier VSDM au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée VSDM + string filePath = "input.vsdm"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier VSDM au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "VSDM" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsdm.id.md b/content/viewer/net/vsdm.id.md new file mode 100644 index 00000000..2ad56618 --- /dev/null +++ b/content/viewer/net/vsdm.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSDM Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan VSDM di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "VSDM penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file VSDM dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file VSDM di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender VSDM ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file VSDM dengan path lengkap. + 3. Tetapkan opsi untuk merender file VSDM ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan VSDM + string filePath = "input.vsdm"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file VSDM ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "VSDM" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsdm.it.md b/content/viewer/net/vsdm.it.md new file mode 100644 index 00000000..24595fc7 --- /dev/null +++ b/content/viewer/net/vsdm.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET VSDM: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare VSDM in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file VSDM per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file VSDM in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file VSDM in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di VSDM in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file VSDM con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file VSDM nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input VSDM + string filePath = "input.vsdm"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file VSDM in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "VSDM" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsdm.ja.md b/content/viewer/net/vsdm.ja.md new file mode 100644 index 00000000..0ba87ac7 --- /dev/null +++ b/content/viewer/net/vsdm.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSDM ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VSDM を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の VSDM ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VSDM ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で VSDM ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で VSDM を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、VSDM ファイルをフルパスでロードします。 + 3. VSDM ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 VSDM ファイルを設定する + string filePath = "input.vsdm"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた VSDM ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "VSDM" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsdm.ko.md b/content/viewer/net/vsdm.ko.md new file mode 100644 index 00000000..c9f6f5eb --- /dev/null +++ b/content/viewer/net/vsdm.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSDM 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VSDM을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 VSDM 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VSDM 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 VSDM 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 VSDM을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 VSDM 파일을 로드합니다. + 3. VSDM 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 VSDM 파일 설정 + string filePath = "input.vsdm"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 VSDM 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "VSDM" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsdm.pt.md b/content/viewer/net/vsdm.pt.md new file mode 100644 index 00000000..14c286f5 --- /dev/null +++ b/content/viewer/net/vsdm.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSDM API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir VSDM em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos VSDM para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos VSDM em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo VSDM em C#" + content: | + Com GroupDocs.Viewer você pode renderizar VSDM para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo VSDM com caminho completo. + 3. Defina opções para renderizar o arquivo VSDM em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada VSDM + string filePath = "input.vsdm"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo VSDM em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "VSDM" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsdm.ru.md b/content/viewer/net/vsdm.ru.md new file mode 100644 index 00000000..43768432 --- /dev/null +++ b/content/viewer/net/vsdm.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSDM API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения VSDM в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "VSDM средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла VSDM в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла VSDM в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать VSDM в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл VSDM с полным путем. + 3. Установите параметры для преобразования файла VSDM в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл VSDM + string filePath = "input.vsdm"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл VSDM в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "VSDM" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsdm.th.md b/content/viewer/net/vsdm.th.md new file mode 100644 index 00000000..9bf7060b --- /dev/null +++ b/content/viewer/net/vsdm.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSDM Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง VSDM ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ VSDM สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ VSDM ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ VSDM ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล VSDM เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ VSDM ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ VSDM เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต VSDM + string filePath = "input.vsdm"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ VSDM เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "VSDM" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsdm.uk.md b/content/viewer/net/vsdm.uk.md new file mode 100644 index 00000000..db06a5c9 --- /dev/null +++ b/content/viewer/net/vsdm.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSDM Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення VSDM у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів VSDM для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу VSDM у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу VSDM у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити VSDM у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл VSDM із повним шляхом. + 3. Встановіть параметри для перетворення файлу VSDM у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл VSDM + string filePath = "input.vsdm"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл VSDM у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "VSDM" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsdm.vi.md b/content/viewer/net/vsdm.vi.md new file mode 100644 index 00000000..21caf221 --- /dev/null +++ b/content/viewer/net/vsdm.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET VSDM - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị VSDM trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp VSDM dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp VSDM trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp VSDM trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị VSDM thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp VSDM với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp VSDM thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp VSDM đầu vào + string filePath = "input.vsdm"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp VSDM thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "VSDM" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsdm.zh.md b/content/viewer/net/vsdm.zh.md new file mode 100644 index 00000000..83835a72 --- /dev/null +++ b/content/viewer/net/vsdm.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSDM Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VSDM。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 VSDM 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VSDM 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 VSDM 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 VSDM 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 VSDM 文件。 + 3. 设置选项以将 VSDM 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 VSDM 文件 + string filePath = "input.vsdm"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 VSDM 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "VSDM" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsdx.de.md b/content/viewer/net/vsdx.de.md new file mode 100644 index 00000000..1f362b3c --- /dev/null +++ b/content/viewer/net/vsdx.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSDX Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VSDX in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "VSDX Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VSDX-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der VSDX-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie VSDX in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei VSDX mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei VSDX im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei VSDX ein + string filePath = "input.vsdx"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei VSDX mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "VSDX" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsdx.en.md b/content/viewer/net/vsdx.en.md new file mode 100644 index 00000000..4d6dbfcb --- /dev/null +++ b/content/viewer/net/vsdx.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSDX Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display VSDX in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "VSDX file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display VSDX file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render VSDX file in C#" + content: | + With GroupDocs.Viewer you can render VSDX to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the VSDX file with full path. + 3. Set options to render VSDX file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input VSDX file + string filePath = "input.vsdx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render VSDX file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "VSDX" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsdx.es.md b/content/viewer/net/vsdx.es.md new file mode 100644 index 00000000..99706738 --- /dev/null +++ b/content/viewer/net/vsdx.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSDX API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar VSDX en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "VSDX visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos VSDX en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo VSDX en C#" + content: | + Con GroupDocs.Viewer puede renderizar VSDX a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo VSDX con la ruta completa. + 3. Configure opciones para representar el archivo VSDX en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada VSDX + string filePath = "input.vsdx"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo VSDX a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "VSDX" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsdx.fa.md b/content/viewer/net/vsdx.fa.md new file mode 100644 index 00000000..8267b8ed --- /dev/null +++ b/content/viewer/net/vsdx.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSDX بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش VSDX در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل VSDX برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل VSDX در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل VSDX در C#" + content: | + با GroupDocs.Viewer می‌توانید VSDX را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل VSDX را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل VSDX در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی VSDX را تنظیم کنید + string filePath = "input.vsdx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل VSDX را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "VSDX" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsdx.fr.md b/content/viewer/net/vsdx.fr.md new file mode 100644 index 00000000..73b53acc --- /dev/null +++ b/content/viewer/net/vsdx.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET VSDX - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher VSDX dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "VSDX visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier VSDX dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier VSDX dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer VSDX au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier VSDX avec le chemin complet. + 3. Définissez les options pour restituer le fichier VSDX au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée VSDX + string filePath = "input.vsdx"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier VSDX au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "VSDX" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsdx.id.md b/content/viewer/net/vsdx.id.md new file mode 100644 index 00000000..65bf9a7a --- /dev/null +++ b/content/viewer/net/vsdx.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSDX Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan VSDX di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "VSDX penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file VSDX dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file VSDX di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender VSDX ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file VSDX dengan path lengkap. + 3. Tetapkan opsi untuk merender file VSDX ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan VSDX + string filePath = "input.vsdx"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file VSDX ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "VSDX" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsdx.it.md b/content/viewer/net/vsdx.it.md new file mode 100644 index 00000000..2137f220 --- /dev/null +++ b/content/viewer/net/vsdx.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET VSDX: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare VSDX in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file VSDX per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file VSDX in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file VSDX in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di VSDX in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file VSDX con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file VSDX nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input VSDX + string filePath = "input.vsdx"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file VSDX in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "VSDX" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsdx.ja.md b/content/viewer/net/vsdx.ja.md new file mode 100644 index 00000000..afae7ab4 --- /dev/null +++ b/content/viewer/net/vsdx.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSDX ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VSDX を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の VSDX ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VSDX ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で VSDX ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で VSDX を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、VSDX ファイルをフルパスでロードします。 + 3. VSDX ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 VSDX ファイルを設定する + string filePath = "input.vsdx"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた VSDX ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "VSDX" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsdx.ko.md b/content/viewer/net/vsdx.ko.md new file mode 100644 index 00000000..927c18d9 --- /dev/null +++ b/content/viewer/net/vsdx.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSDX 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VSDX을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 VSDX 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VSDX 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 VSDX 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 VSDX을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 VSDX 파일을 로드합니다. + 3. VSDX 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 VSDX 파일 설정 + string filePath = "input.vsdx"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 VSDX 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "VSDX" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsdx.pt.md b/content/viewer/net/vsdx.pt.md new file mode 100644 index 00000000..1eb7dc45 --- /dev/null +++ b/content/viewer/net/vsdx.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSDX API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir VSDX em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos VSDX para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos VSDX em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo VSDX em C#" + content: | + Com GroupDocs.Viewer você pode renderizar VSDX para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo VSDX com caminho completo. + 3. Defina opções para renderizar o arquivo VSDX em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada VSDX + string filePath = "input.vsdx"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo VSDX em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "VSDX" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsdx.ru.md b/content/viewer/net/vsdx.ru.md new file mode 100644 index 00000000..ae1cab3d --- /dev/null +++ b/content/viewer/net/vsdx.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSDX API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения VSDX в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "VSDX средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла VSDX в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла VSDX в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать VSDX в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл VSDX с полным путем. + 3. Установите параметры для преобразования файла VSDX в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл VSDX + string filePath = "input.vsdx"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл VSDX в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "VSDX" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsdx.th.md b/content/viewer/net/vsdx.th.md new file mode 100644 index 00000000..8aa41989 --- /dev/null +++ b/content/viewer/net/vsdx.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSDX Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง VSDX ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ VSDX สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ VSDX ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ VSDX ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล VSDX เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ VSDX ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ VSDX เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต VSDX + string filePath = "input.vsdx"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ VSDX เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "VSDX" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsdx.uk.md b/content/viewer/net/vsdx.uk.md new file mode 100644 index 00000000..ccc1b763 --- /dev/null +++ b/content/viewer/net/vsdx.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSDX Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення VSDX у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів VSDX для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу VSDX у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу VSDX у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити VSDX у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл VSDX із повним шляхом. + 3. Встановіть параметри для перетворення файлу VSDX у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл VSDX + string filePath = "input.vsdx"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл VSDX у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "VSDX" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsdx.vi.md b/content/viewer/net/vsdx.vi.md new file mode 100644 index 00000000..76cdf658 --- /dev/null +++ b/content/viewer/net/vsdx.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET VSDX - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị VSDX trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp VSDX dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp VSDX trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp VSDX trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị VSDX thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp VSDX với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp VSDX thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp VSDX đầu vào + string filePath = "input.vsdx"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp VSDX thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "VSDX" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsdx.zh.md b/content/viewer/net/vsdx.zh.md new file mode 100644 index 00000000..7020ac36 --- /dev/null +++ b/content/viewer/net/vsdx.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSDX Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VSDX。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 VSDX 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VSDX 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 VSDX 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 VSDX 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 VSDX 文件。 + 3. 设置选项以将 VSDX 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 VSDX 文件 + string filePath = "input.vsdx"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 VSDX 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "VSDX" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vss.de.md b/content/viewer/net/vss.de.md new file mode 100644 index 00000000..21b3550e --- /dev/null +++ b/content/viewer/net/vss.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSS Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VSS in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "VSS Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VSS-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der VSS-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie VSS in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei VSS mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei VSS im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei VSS ein + string filePath = "input.vss"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei VSS mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "VSS" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vss.en.md b/content/viewer/net/vss.en.md new file mode 100644 index 00000000..4093c0a3 --- /dev/null +++ b/content/viewer/net/vss.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSS Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display VSS in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "VSS file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display VSS file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render VSS file in C#" + content: | + With GroupDocs.Viewer you can render VSS to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the VSS file with full path. + 3. Set options to render VSS file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input VSS file + string filePath = "input.vss"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render VSS file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "VSS" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vss.es.md b/content/viewer/net/vss.es.md new file mode 100644 index 00000000..215c1a44 --- /dev/null +++ b/content/viewer/net/vss.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSS API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar VSS en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "VSS visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos VSS en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo VSS en C#" + content: | + Con GroupDocs.Viewer puede renderizar VSS a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo VSS con la ruta completa. + 3. Configure opciones para representar el archivo VSS en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada VSS + string filePath = "input.vss"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo VSS a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "VSS" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vss.fa.md b/content/viewer/net/vss.fa.md new file mode 100644 index 00000000..21a125d8 --- /dev/null +++ b/content/viewer/net/vss.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSS بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش VSS در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل VSS برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل VSS در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل VSS در C#" + content: | + با GroupDocs.Viewer می‌توانید VSS را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل VSS را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل VSS در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی VSS را تنظیم کنید + string filePath = "input.vss"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل VSS را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "VSS" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vss.fr.md b/content/viewer/net/vss.fr.md new file mode 100644 index 00000000..70446f03 --- /dev/null +++ b/content/viewer/net/vss.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET VSS - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher VSS dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "VSS visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier VSS dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier VSS dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer VSS au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier VSS avec le chemin complet. + 3. Définissez les options pour restituer le fichier VSS au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée VSS + string filePath = "input.vss"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier VSS au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "VSS" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vss.id.md b/content/viewer/net/vss.id.md new file mode 100644 index 00000000..adf9a6c3 --- /dev/null +++ b/content/viewer/net/vss.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSS Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan VSS di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "VSS penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file VSS dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file VSS di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender VSS ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file VSS dengan path lengkap. + 3. Tetapkan opsi untuk merender file VSS ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan VSS + string filePath = "input.vss"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file VSS ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "VSS" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vss.it.md b/content/viewer/net/vss.it.md new file mode 100644 index 00000000..88135ee4 --- /dev/null +++ b/content/viewer/net/vss.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET VSS: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare VSS in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file VSS per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file VSS in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file VSS in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di VSS in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file VSS con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file VSS nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input VSS + string filePath = "input.vss"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file VSS in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "VSS" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vss.ja.md b/content/viewer/net/vss.ja.md new file mode 100644 index 00000000..d47eef97 --- /dev/null +++ b/content/viewer/net/vss.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSS ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VSS を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の VSS ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VSS ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で VSS ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で VSS を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、VSS ファイルをフルパスでロードします。 + 3. VSS ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 VSS ファイルを設定する + string filePath = "input.vss"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた VSS ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "VSS" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vss.ko.md b/content/viewer/net/vss.ko.md new file mode 100644 index 00000000..1832d1e2 --- /dev/null +++ b/content/viewer/net/vss.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSS 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VSS을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 VSS 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VSS 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 VSS 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 VSS을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 VSS 파일을 로드합니다. + 3. VSS 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 VSS 파일 설정 + string filePath = "input.vss"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 VSS 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "VSS" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vss.pt.md b/content/viewer/net/vss.pt.md new file mode 100644 index 00000000..ecead10f --- /dev/null +++ b/content/viewer/net/vss.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSS API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir VSS em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos VSS para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos VSS em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo VSS em C#" + content: | + Com GroupDocs.Viewer você pode renderizar VSS para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo VSS com caminho completo. + 3. Defina opções para renderizar o arquivo VSS em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada VSS + string filePath = "input.vss"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo VSS em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "VSS" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vss.ru.md b/content/viewer/net/vss.ru.md new file mode 100644 index 00000000..5609db9d --- /dev/null +++ b/content/viewer/net/vss.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSS API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения VSS в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "VSS средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла VSS в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла VSS в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать VSS в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл VSS с полным путем. + 3. Установите параметры для преобразования файла VSS в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл VSS + string filePath = "input.vss"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл VSS в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "VSS" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vss.th.md b/content/viewer/net/vss.th.md new file mode 100644 index 00000000..f17975e3 --- /dev/null +++ b/content/viewer/net/vss.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSS Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง VSS ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ VSS สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ VSS ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ VSS ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล VSS เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ VSS ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ VSS เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต VSS + string filePath = "input.vss"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ VSS เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "VSS" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vss.uk.md b/content/viewer/net/vss.uk.md new file mode 100644 index 00000000..163dd959 --- /dev/null +++ b/content/viewer/net/vss.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSS Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення VSS у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів VSS для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу VSS у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу VSS у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити VSS у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл VSS із повним шляхом. + 3. Встановіть параметри для перетворення файлу VSS у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл VSS + string filePath = "input.vss"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл VSS у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "VSS" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vss.vi.md b/content/viewer/net/vss.vi.md new file mode 100644 index 00000000..e724057e --- /dev/null +++ b/content/viewer/net/vss.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET VSS - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị VSS trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp VSS dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp VSS trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp VSS trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị VSS thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp VSS với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp VSS thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp VSS đầu vào + string filePath = "input.vss"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp VSS thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "VSS" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vss.zh.md b/content/viewer/net/vss.zh.md new file mode 100644 index 00000000..ecdb8e59 --- /dev/null +++ b/content/viewer/net/vss.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSS Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VSS。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 VSS 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VSS 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 VSS 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 VSS 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 VSS 文件。 + 3. 设置选项以将 VSS 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 VSS 文件 + string filePath = "input.vss"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 VSS 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "VSS" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vssm.de.md b/content/viewer/net/vssm.de.md new file mode 100644 index 00000000..57a4ffbe --- /dev/null +++ b/content/viewer/net/vssm.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSSM Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VSSM in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "VSSM Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VSSM-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der VSSM-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie VSSM in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei VSSM mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei VSSM im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei VSSM ein + string filePath = "input.vssm"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei VSSM mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "VSSM" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vssm.en.md b/content/viewer/net/vssm.en.md new file mode 100644 index 00000000..8fa336f4 --- /dev/null +++ b/content/viewer/net/vssm.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSSM Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display VSSM in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "VSSM file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display VSSM file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render VSSM file in C#" + content: | + With GroupDocs.Viewer you can render VSSM to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the VSSM file with full path. + 3. Set options to render VSSM file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input VSSM file + string filePath = "input.vssm"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render VSSM file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "VSSM" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vssm.es.md b/content/viewer/net/vssm.es.md new file mode 100644 index 00000000..7826e505 --- /dev/null +++ b/content/viewer/net/vssm.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSSM API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar VSSM en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "VSSM visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos VSSM en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo VSSM en C#" + content: | + Con GroupDocs.Viewer puede renderizar VSSM a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo VSSM con la ruta completa. + 3. Configure opciones para representar el archivo VSSM en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada VSSM + string filePath = "input.vssm"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo VSSM a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "VSSM" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vssm.fa.md b/content/viewer/net/vssm.fa.md new file mode 100644 index 00000000..8298309b --- /dev/null +++ b/content/viewer/net/vssm.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSSM بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش VSSM در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل VSSM برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل VSSM در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل VSSM در C#" + content: | + با GroupDocs.Viewer می‌توانید VSSM را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل VSSM را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل VSSM در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی VSSM را تنظیم کنید + string filePath = "input.vssm"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل VSSM را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "VSSM" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vssm.fr.md b/content/viewer/net/vssm.fr.md new file mode 100644 index 00000000..511d3211 --- /dev/null +++ b/content/viewer/net/vssm.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET VSSM - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher VSSM dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "VSSM visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier VSSM dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier VSSM dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer VSSM au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier VSSM avec le chemin complet. + 3. Définissez les options pour restituer le fichier VSSM au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée VSSM + string filePath = "input.vssm"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier VSSM au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "VSSM" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vssm.id.md b/content/viewer/net/vssm.id.md new file mode 100644 index 00000000..f53cd9e5 --- /dev/null +++ b/content/viewer/net/vssm.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSSM Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan VSSM di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "VSSM penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file VSSM dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file VSSM di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender VSSM ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file VSSM dengan path lengkap. + 3. Tetapkan opsi untuk merender file VSSM ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan VSSM + string filePath = "input.vssm"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file VSSM ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "VSSM" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vssm.it.md b/content/viewer/net/vssm.it.md new file mode 100644 index 00000000..7641d600 --- /dev/null +++ b/content/viewer/net/vssm.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET VSSM: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare VSSM in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file VSSM per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file VSSM in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file VSSM in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di VSSM in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file VSSM con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file VSSM nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input VSSM + string filePath = "input.vssm"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file VSSM in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "VSSM" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vssm.ja.md b/content/viewer/net/vssm.ja.md new file mode 100644 index 00000000..8f0a46c6 --- /dev/null +++ b/content/viewer/net/vssm.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSSM ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VSSM を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の VSSM ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VSSM ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で VSSM ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で VSSM を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、VSSM ファイルをフルパスでロードします。 + 3. VSSM ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 VSSM ファイルを設定する + string filePath = "input.vssm"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた VSSM ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "VSSM" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vssm.ko.md b/content/viewer/net/vssm.ko.md new file mode 100644 index 00000000..13013190 --- /dev/null +++ b/content/viewer/net/vssm.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSSM 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VSSM을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 VSSM 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VSSM 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 VSSM 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 VSSM을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 VSSM 파일을 로드합니다. + 3. VSSM 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 VSSM 파일 설정 + string filePath = "input.vssm"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 VSSM 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "VSSM" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vssm.pt.md b/content/viewer/net/vssm.pt.md new file mode 100644 index 00000000..ced1c500 --- /dev/null +++ b/content/viewer/net/vssm.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSSM API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir VSSM em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos VSSM para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos VSSM em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo VSSM em C#" + content: | + Com GroupDocs.Viewer você pode renderizar VSSM para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo VSSM com caminho completo. + 3. Defina opções para renderizar o arquivo VSSM em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada VSSM + string filePath = "input.vssm"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo VSSM em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "VSSM" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vssm.ru.md b/content/viewer/net/vssm.ru.md new file mode 100644 index 00000000..e6c13ea5 --- /dev/null +++ b/content/viewer/net/vssm.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSSM API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения VSSM в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "VSSM средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла VSSM в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла VSSM в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать VSSM в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл VSSM с полным путем. + 3. Установите параметры для преобразования файла VSSM в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл VSSM + string filePath = "input.vssm"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл VSSM в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "VSSM" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vssm.th.md b/content/viewer/net/vssm.th.md new file mode 100644 index 00000000..07e1f193 --- /dev/null +++ b/content/viewer/net/vssm.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSSM Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง VSSM ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ VSSM สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ VSSM ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ VSSM ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล VSSM เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ VSSM ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ VSSM เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต VSSM + string filePath = "input.vssm"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ VSSM เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "VSSM" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vssm.uk.md b/content/viewer/net/vssm.uk.md new file mode 100644 index 00000000..120b8607 --- /dev/null +++ b/content/viewer/net/vssm.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSSM Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення VSSM у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів VSSM для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу VSSM у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу VSSM у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити VSSM у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл VSSM із повним шляхом. + 3. Встановіть параметри для перетворення файлу VSSM у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл VSSM + string filePath = "input.vssm"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл VSSM у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "VSSM" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vssm.vi.md b/content/viewer/net/vssm.vi.md new file mode 100644 index 00000000..8aa2fd8a --- /dev/null +++ b/content/viewer/net/vssm.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET VSSM - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị VSSM trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp VSSM dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp VSSM trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp VSSM trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị VSSM thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp VSSM với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp VSSM thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp VSSM đầu vào + string filePath = "input.vssm"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp VSSM thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "VSSM" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vssm.zh.md b/content/viewer/net/vssm.zh.md new file mode 100644 index 00000000..1596d37e --- /dev/null +++ b/content/viewer/net/vssm.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSSM Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VSSM。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 VSSM 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VSSM 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 VSSM 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 VSSM 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 VSSM 文件。 + 3. 设置选项以将 VSSM 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 VSSM 文件 + string filePath = "input.vssm"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 VSSM 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "VSSM" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vssx.de.md b/content/viewer/net/vssx.de.md new file mode 100644 index 00000000..aefbe467 --- /dev/null +++ b/content/viewer/net/vssx.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSSX Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VSSX in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "VSSX Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VSSX-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der VSSX-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie VSSX in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei VSSX mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei VSSX im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei VSSX ein + string filePath = "input.vssx"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei VSSX mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "VSSX" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vssx.en.md b/content/viewer/net/vssx.en.md new file mode 100644 index 00000000..b661332a --- /dev/null +++ b/content/viewer/net/vssx.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSSX Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display VSSX in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "VSSX file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display VSSX file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render VSSX file in C#" + content: | + With GroupDocs.Viewer you can render VSSX to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the VSSX file with full path. + 3. Set options to render VSSX file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input VSSX file + string filePath = "input.vssx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render VSSX file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "VSSX" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vssx.es.md b/content/viewer/net/vssx.es.md new file mode 100644 index 00000000..7a972293 --- /dev/null +++ b/content/viewer/net/vssx.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSSX API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar VSSX en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "VSSX visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos VSSX en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo VSSX en C#" + content: | + Con GroupDocs.Viewer puede renderizar VSSX a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo VSSX con la ruta completa. + 3. Configure opciones para representar el archivo VSSX en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada VSSX + string filePath = "input.vssx"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo VSSX a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "VSSX" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vssx.fa.md b/content/viewer/net/vssx.fa.md new file mode 100644 index 00000000..c2f13624 --- /dev/null +++ b/content/viewer/net/vssx.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSSX بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش VSSX در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل VSSX برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل VSSX در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل VSSX در C#" + content: | + با GroupDocs.Viewer می‌توانید VSSX را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل VSSX را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل VSSX در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی VSSX را تنظیم کنید + string filePath = "input.vssx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل VSSX را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "VSSX" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vssx.fr.md b/content/viewer/net/vssx.fr.md new file mode 100644 index 00000000..3e04aec7 --- /dev/null +++ b/content/viewer/net/vssx.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET VSSX - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher VSSX dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "VSSX visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier VSSX dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier VSSX dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer VSSX au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier VSSX avec le chemin complet. + 3. Définissez les options pour restituer le fichier VSSX au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée VSSX + string filePath = "input.vssx"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier VSSX au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "VSSX" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vssx.id.md b/content/viewer/net/vssx.id.md new file mode 100644 index 00000000..10ccc8d8 --- /dev/null +++ b/content/viewer/net/vssx.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSSX Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan VSSX di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "VSSX penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file VSSX dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file VSSX di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender VSSX ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file VSSX dengan path lengkap. + 3. Tetapkan opsi untuk merender file VSSX ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan VSSX + string filePath = "input.vssx"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file VSSX ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "VSSX" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vssx.it.md b/content/viewer/net/vssx.it.md new file mode 100644 index 00000000..63805da2 --- /dev/null +++ b/content/viewer/net/vssx.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET VSSX: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare VSSX in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file VSSX per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file VSSX in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file VSSX in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di VSSX in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file VSSX con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file VSSX nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input VSSX + string filePath = "input.vssx"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file VSSX in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "VSSX" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vssx.ja.md b/content/viewer/net/vssx.ja.md new file mode 100644 index 00000000..d3d6784c --- /dev/null +++ b/content/viewer/net/vssx.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSSX ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VSSX を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の VSSX ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VSSX ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で VSSX ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で VSSX を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、VSSX ファイルをフルパスでロードします。 + 3. VSSX ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 VSSX ファイルを設定する + string filePath = "input.vssx"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた VSSX ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "VSSX" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vssx.ko.md b/content/viewer/net/vssx.ko.md new file mode 100644 index 00000000..998eb9fb --- /dev/null +++ b/content/viewer/net/vssx.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSSX 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VSSX을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 VSSX 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VSSX 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 VSSX 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 VSSX을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 VSSX 파일을 로드합니다. + 3. VSSX 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 VSSX 파일 설정 + string filePath = "input.vssx"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 VSSX 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "VSSX" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vssx.pt.md b/content/viewer/net/vssx.pt.md new file mode 100644 index 00000000..dbc8a11d --- /dev/null +++ b/content/viewer/net/vssx.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSSX API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir VSSX em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos VSSX para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos VSSX em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo VSSX em C#" + content: | + Com GroupDocs.Viewer você pode renderizar VSSX para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo VSSX com caminho completo. + 3. Defina opções para renderizar o arquivo VSSX em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada VSSX + string filePath = "input.vssx"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo VSSX em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "VSSX" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vssx.ru.md b/content/viewer/net/vssx.ru.md new file mode 100644 index 00000000..1f03ddd5 --- /dev/null +++ b/content/viewer/net/vssx.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSSX API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения VSSX в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "VSSX средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла VSSX в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла VSSX в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать VSSX в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл VSSX с полным путем. + 3. Установите параметры для преобразования файла VSSX в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл VSSX + string filePath = "input.vssx"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл VSSX в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "VSSX" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vssx.th.md b/content/viewer/net/vssx.th.md new file mode 100644 index 00000000..0779f11c --- /dev/null +++ b/content/viewer/net/vssx.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSSX Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง VSSX ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ VSSX สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ VSSX ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ VSSX ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล VSSX เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ VSSX ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ VSSX เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต VSSX + string filePath = "input.vssx"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ VSSX เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "VSSX" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vssx.uk.md b/content/viewer/net/vssx.uk.md new file mode 100644 index 00000000..e5586ed3 --- /dev/null +++ b/content/viewer/net/vssx.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSSX Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення VSSX у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів VSSX для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу VSSX у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу VSSX у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити VSSX у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл VSSX із повним шляхом. + 3. Встановіть параметри для перетворення файлу VSSX у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл VSSX + string filePath = "input.vssx"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл VSSX у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "VSSX" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vssx.vi.md b/content/viewer/net/vssx.vi.md new file mode 100644 index 00000000..c270bbe6 --- /dev/null +++ b/content/viewer/net/vssx.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET VSSX - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị VSSX trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp VSSX dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp VSSX trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp VSSX trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị VSSX thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp VSSX với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp VSSX thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp VSSX đầu vào + string filePath = "input.vssx"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp VSSX thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "VSSX" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vssx.zh.md b/content/viewer/net/vssx.zh.md new file mode 100644 index 00000000..a6e82d37 --- /dev/null +++ b/content/viewer/net/vssx.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSSX Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VSSX。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 VSSX 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VSSX 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 VSSX 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 VSSX 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 VSSX 文件。 + 3. 设置选项以将 VSSX 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 VSSX 文件 + string filePath = "input.vssx"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 VSSX 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "VSSX" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vst.de.md b/content/viewer/net/vst.de.md new file mode 100644 index 00000000..a290284c --- /dev/null +++ b/content/viewer/net/vst.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VST Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VST in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "VST Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VST-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der VST-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie VST in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei VST mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei VST im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei VST ein + string filePath = "input.vst"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei VST mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "VST" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vst.en.md b/content/viewer/net/vst.en.md new file mode 100644 index 00000000..a78575cb --- /dev/null +++ b/content/viewer/net/vst.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VST Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display VST in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "VST file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display VST file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render VST file in C#" + content: | + With GroupDocs.Viewer you can render VST to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the VST file with full path. + 3. Set options to render VST file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input VST file + string filePath = "input.vst"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render VST file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "VST" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vst.es.md b/content/viewer/net/vst.es.md new file mode 100644 index 00000000..e50fea65 --- /dev/null +++ b/content/viewer/net/vst.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VST API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar VST en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "VST visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos VST en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo VST en C#" + content: | + Con GroupDocs.Viewer puede renderizar VST a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo VST con la ruta completa. + 3. Configure opciones para representar el archivo VST en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada VST + string filePath = "input.vst"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo VST a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "VST" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vst.fa.md b/content/viewer/net/vst.fa.md new file mode 100644 index 00000000..75b26dea --- /dev/null +++ b/content/viewer/net/vst.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VST بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش VST در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل VST برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل VST در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل VST در C#" + content: | + با GroupDocs.Viewer می‌توانید VST را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل VST را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل VST در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی VST را تنظیم کنید + string filePath = "input.vst"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل VST را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "VST" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vst.fr.md b/content/viewer/net/vst.fr.md new file mode 100644 index 00000000..a046d412 --- /dev/null +++ b/content/viewer/net/vst.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET VST - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher VST dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "VST visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier VST dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier VST dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer VST au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier VST avec le chemin complet. + 3. Définissez les options pour restituer le fichier VST au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée VST + string filePath = "input.vst"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier VST au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "VST" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vst.id.md b/content/viewer/net/vst.id.md new file mode 100644 index 00000000..69e015ca --- /dev/null +++ b/content/viewer/net/vst.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VST Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan VST di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "VST penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file VST dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file VST di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender VST ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file VST dengan path lengkap. + 3. Tetapkan opsi untuk merender file VST ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan VST + string filePath = "input.vst"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file VST ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "VST" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vst.it.md b/content/viewer/net/vst.it.md new file mode 100644 index 00000000..b43fb2c5 --- /dev/null +++ b/content/viewer/net/vst.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET VST: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare VST in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file VST per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file VST in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file VST in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di VST in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file VST con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file VST nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input VST + string filePath = "input.vst"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file VST in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "VST" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vst.ja.md b/content/viewer/net/vst.ja.md new file mode 100644 index 00000000..1a7d70d9 --- /dev/null +++ b/content/viewer/net/vst.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VST ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VST を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の VST ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VST ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で VST ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で VST を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、VST ファイルをフルパスでロードします。 + 3. VST ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 VST ファイルを設定する + string filePath = "input.vst"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた VST ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "VST" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vst.ko.md b/content/viewer/net/vst.ko.md new file mode 100644 index 00000000..322f4fe8 --- /dev/null +++ b/content/viewer/net/vst.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VST 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VST을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 VST 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VST 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 VST 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 VST을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 VST 파일을 로드합니다. + 3. VST 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 VST 파일 설정 + string filePath = "input.vst"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 VST 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "VST" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vst.pt.md b/content/viewer/net/vst.pt.md new file mode 100644 index 00000000..1a7b2e90 --- /dev/null +++ b/content/viewer/net/vst.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VST API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir VST em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos VST para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos VST em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo VST em C#" + content: | + Com GroupDocs.Viewer você pode renderizar VST para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo VST com caminho completo. + 3. Defina opções para renderizar o arquivo VST em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada VST + string filePath = "input.vst"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo VST em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "VST" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vst.ru.md b/content/viewer/net/vst.ru.md new file mode 100644 index 00000000..217b9035 --- /dev/null +++ b/content/viewer/net/vst.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VST API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения VST в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "VST средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла VST в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла VST в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать VST в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл VST с полным путем. + 3. Установите параметры для преобразования файла VST в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл VST + string filePath = "input.vst"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл VST в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "VST" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vst.th.md b/content/viewer/net/vst.th.md new file mode 100644 index 00000000..e9d38028 --- /dev/null +++ b/content/viewer/net/vst.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VST Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง VST ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ VST สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ VST ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ VST ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล VST เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ VST ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ VST เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต VST + string filePath = "input.vst"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ VST เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "VST" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vst.uk.md b/content/viewer/net/vst.uk.md new file mode 100644 index 00000000..e199d94e --- /dev/null +++ b/content/viewer/net/vst.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VST Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення VST у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів VST для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу VST у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу VST у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити VST у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл VST із повним шляхом. + 3. Встановіть параметри для перетворення файлу VST у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл VST + string filePath = "input.vst"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл VST у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "VST" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vst.vi.md b/content/viewer/net/vst.vi.md new file mode 100644 index 00000000..b13cf049 --- /dev/null +++ b/content/viewer/net/vst.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET VST - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị VST trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp VST dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp VST trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp VST trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị VST thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp VST với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp VST thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp VST đầu vào + string filePath = "input.vst"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp VST thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "VST" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vst.zh.md b/content/viewer/net/vst.zh.md new file mode 100644 index 00000000..0149df4c --- /dev/null +++ b/content/viewer/net/vst.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VST Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VST。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 VST 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VST 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 VST 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 VST 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 VST 文件。 + 3. 设置选项以将 VST 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 VST 文件 + string filePath = "input.vst"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 VST 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "VST" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vstm.de.md b/content/viewer/net/vstm.de.md new file mode 100644 index 00000000..081813cf --- /dev/null +++ b/content/viewer/net/vstm.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSTM Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VSTM in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "VSTM Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VSTM-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der VSTM-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie VSTM in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei VSTM mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei VSTM im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei VSTM ein + string filePath = "input.vstm"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei VSTM mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "VSTM" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vstm.en.md b/content/viewer/net/vstm.en.md new file mode 100644 index 00000000..887cb66c --- /dev/null +++ b/content/viewer/net/vstm.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSTM Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display VSTM in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "VSTM file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display VSTM file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render VSTM file in C#" + content: | + With GroupDocs.Viewer you can render VSTM to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the VSTM file with full path. + 3. Set options to render VSTM file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input VSTM file + string filePath = "input.vstm"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render VSTM file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "VSTM" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vstm.es.md b/content/viewer/net/vstm.es.md new file mode 100644 index 00000000..6f7f3ed9 --- /dev/null +++ b/content/viewer/net/vstm.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSTM API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar VSTM en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "VSTM visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos VSTM en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo VSTM en C#" + content: | + Con GroupDocs.Viewer puede renderizar VSTM a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo VSTM con la ruta completa. + 3. Configure opciones para representar el archivo VSTM en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada VSTM + string filePath = "input.vstm"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo VSTM a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "VSTM" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vstm.fa.md b/content/viewer/net/vstm.fa.md new file mode 100644 index 00000000..c745d168 --- /dev/null +++ b/content/viewer/net/vstm.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSTM بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش VSTM در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل VSTM برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل VSTM در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل VSTM در C#" + content: | + با GroupDocs.Viewer می‌توانید VSTM را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل VSTM را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل VSTM در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی VSTM را تنظیم کنید + string filePath = "input.vstm"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل VSTM را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "VSTM" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vstm.fr.md b/content/viewer/net/vstm.fr.md new file mode 100644 index 00000000..eaeae1c3 --- /dev/null +++ b/content/viewer/net/vstm.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET VSTM - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher VSTM dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "VSTM visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier VSTM dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier VSTM dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer VSTM au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier VSTM avec le chemin complet. + 3. Définissez les options pour restituer le fichier VSTM au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée VSTM + string filePath = "input.vstm"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier VSTM au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "VSTM" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vstm.id.md b/content/viewer/net/vstm.id.md new file mode 100644 index 00000000..71ead2c2 --- /dev/null +++ b/content/viewer/net/vstm.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSTM Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan VSTM di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "VSTM penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file VSTM dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file VSTM di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender VSTM ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file VSTM dengan path lengkap. + 3. Tetapkan opsi untuk merender file VSTM ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan VSTM + string filePath = "input.vstm"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file VSTM ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "VSTM" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vstm.it.md b/content/viewer/net/vstm.it.md new file mode 100644 index 00000000..c5f7522e --- /dev/null +++ b/content/viewer/net/vstm.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET VSTM: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare VSTM in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file VSTM per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file VSTM in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file VSTM in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di VSTM in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file VSTM con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file VSTM nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input VSTM + string filePath = "input.vstm"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file VSTM in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "VSTM" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vstm.ja.md b/content/viewer/net/vstm.ja.md new file mode 100644 index 00000000..c7e536f8 --- /dev/null +++ b/content/viewer/net/vstm.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSTM ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VSTM を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の VSTM ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VSTM ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で VSTM ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で VSTM を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、VSTM ファイルをフルパスでロードします。 + 3. VSTM ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 VSTM ファイルを設定する + string filePath = "input.vstm"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた VSTM ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "VSTM" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vstm.ko.md b/content/viewer/net/vstm.ko.md new file mode 100644 index 00000000..c78490e9 --- /dev/null +++ b/content/viewer/net/vstm.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSTM 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VSTM을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 VSTM 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VSTM 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 VSTM 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 VSTM을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 VSTM 파일을 로드합니다. + 3. VSTM 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 VSTM 파일 설정 + string filePath = "input.vstm"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 VSTM 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "VSTM" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vstm.pt.md b/content/viewer/net/vstm.pt.md new file mode 100644 index 00000000..ce1d48b8 --- /dev/null +++ b/content/viewer/net/vstm.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSTM API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir VSTM em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos VSTM para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos VSTM em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo VSTM em C#" + content: | + Com GroupDocs.Viewer você pode renderizar VSTM para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo VSTM com caminho completo. + 3. Defina opções para renderizar o arquivo VSTM em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada VSTM + string filePath = "input.vstm"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo VSTM em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "VSTM" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vstm.ru.md b/content/viewer/net/vstm.ru.md new file mode 100644 index 00000000..7f3fd312 --- /dev/null +++ b/content/viewer/net/vstm.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSTM API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения VSTM в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "VSTM средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла VSTM в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла VSTM в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать VSTM в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл VSTM с полным путем. + 3. Установите параметры для преобразования файла VSTM в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл VSTM + string filePath = "input.vstm"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл VSTM в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "VSTM" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vstm.th.md b/content/viewer/net/vstm.th.md new file mode 100644 index 00000000..00ac3ee3 --- /dev/null +++ b/content/viewer/net/vstm.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSTM Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง VSTM ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ VSTM สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ VSTM ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ VSTM ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล VSTM เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ VSTM ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ VSTM เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต VSTM + string filePath = "input.vstm"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ VSTM เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "VSTM" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vstm.uk.md b/content/viewer/net/vstm.uk.md new file mode 100644 index 00000000..be795afd --- /dev/null +++ b/content/viewer/net/vstm.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSTM Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення VSTM у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів VSTM для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу VSTM у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу VSTM у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити VSTM у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл VSTM із повним шляхом. + 3. Встановіть параметри для перетворення файлу VSTM у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл VSTM + string filePath = "input.vstm"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл VSTM у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "VSTM" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vstm.vi.md b/content/viewer/net/vstm.vi.md new file mode 100644 index 00000000..091b5cec --- /dev/null +++ b/content/viewer/net/vstm.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET VSTM - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị VSTM trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp VSTM dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp VSTM trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp VSTM trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị VSTM thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp VSTM với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp VSTM thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp VSTM đầu vào + string filePath = "input.vstm"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp VSTM thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "VSTM" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vstm.zh.md b/content/viewer/net/vstm.zh.md new file mode 100644 index 00000000..cc0d12bb --- /dev/null +++ b/content/viewer/net/vstm.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSTM Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VSTM。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 VSTM 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VSTM 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 VSTM 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 VSTM 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 VSTM 文件。 + 3. 设置选项以将 VSTM 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 VSTM 文件 + string filePath = "input.vstm"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 VSTM 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "VSTM" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vstx.de.md b/content/viewer/net/vstx.de.md new file mode 100644 index 00000000..3446ae8c --- /dev/null +++ b/content/viewer/net/vstx.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSTX Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VSTX in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "VSTX Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VSTX-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der VSTX-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie VSTX in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei VSTX mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei VSTX im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei VSTX ein + string filePath = "input.vstx"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei VSTX mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "VSTX" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vstx.en.md b/content/viewer/net/vstx.en.md new file mode 100644 index 00000000..aa58b7cc --- /dev/null +++ b/content/viewer/net/vstx.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSTX Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display VSTX in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "VSTX file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display VSTX file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render VSTX file in C#" + content: | + With GroupDocs.Viewer you can render VSTX to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the VSTX file with full path. + 3. Set options to render VSTX file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input VSTX file + string filePath = "input.vstx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render VSTX file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "VSTX" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vstx.es.md b/content/viewer/net/vstx.es.md new file mode 100644 index 00000000..677d6505 --- /dev/null +++ b/content/viewer/net/vstx.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSTX API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar VSTX en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "VSTX visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos VSTX en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo VSTX en C#" + content: | + Con GroupDocs.Viewer puede renderizar VSTX a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo VSTX con la ruta completa. + 3. Configure opciones para representar el archivo VSTX en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada VSTX + string filePath = "input.vstx"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo VSTX a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "VSTX" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vstx.fa.md b/content/viewer/net/vstx.fa.md new file mode 100644 index 00000000..9e6907d7 --- /dev/null +++ b/content/viewer/net/vstx.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSTX بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش VSTX در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل VSTX برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل VSTX در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل VSTX در C#" + content: | + با GroupDocs.Viewer می‌توانید VSTX را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل VSTX را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل VSTX در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی VSTX را تنظیم کنید + string filePath = "input.vstx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل VSTX را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "VSTX" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vstx.fr.md b/content/viewer/net/vstx.fr.md new file mode 100644 index 00000000..1638694c --- /dev/null +++ b/content/viewer/net/vstx.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET VSTX - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher VSTX dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "VSTX visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier VSTX dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier VSTX dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer VSTX au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier VSTX avec le chemin complet. + 3. Définissez les options pour restituer le fichier VSTX au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée VSTX + string filePath = "input.vstx"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier VSTX au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "VSTX" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vstx.id.md b/content/viewer/net/vstx.id.md new file mode 100644 index 00000000..6dec0c52 --- /dev/null +++ b/content/viewer/net/vstx.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSTX Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan VSTX di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "VSTX penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file VSTX dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file VSTX di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender VSTX ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file VSTX dengan path lengkap. + 3. Tetapkan opsi untuk merender file VSTX ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan VSTX + string filePath = "input.vstx"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file VSTX ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "VSTX" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vstx.it.md b/content/viewer/net/vstx.it.md new file mode 100644 index 00000000..d0097aee --- /dev/null +++ b/content/viewer/net/vstx.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET VSTX: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare VSTX in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file VSTX per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file VSTX in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file VSTX in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di VSTX in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file VSTX con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file VSTX nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input VSTX + string filePath = "input.vstx"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file VSTX in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "VSTX" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vstx.ja.md b/content/viewer/net/vstx.ja.md new file mode 100644 index 00000000..262148bf --- /dev/null +++ b/content/viewer/net/vstx.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSTX ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VSTX を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の VSTX ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VSTX ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で VSTX ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で VSTX を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、VSTX ファイルをフルパスでロードします。 + 3. VSTX ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 VSTX ファイルを設定する + string filePath = "input.vstx"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた VSTX ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "VSTX" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vstx.ko.md b/content/viewer/net/vstx.ko.md new file mode 100644 index 00000000..e2f016fe --- /dev/null +++ b/content/viewer/net/vstx.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSTX 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VSTX을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 VSTX 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VSTX 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 VSTX 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 VSTX을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 VSTX 파일을 로드합니다. + 3. VSTX 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 VSTX 파일 설정 + string filePath = "input.vstx"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 VSTX 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "VSTX" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vstx.pt.md b/content/viewer/net/vstx.pt.md new file mode 100644 index 00000000..9cec2e08 --- /dev/null +++ b/content/viewer/net/vstx.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSTX API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir VSTX em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos VSTX para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos VSTX em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo VSTX em C#" + content: | + Com GroupDocs.Viewer você pode renderizar VSTX para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo VSTX com caminho completo. + 3. Defina opções para renderizar o arquivo VSTX em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada VSTX + string filePath = "input.vstx"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo VSTX em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "VSTX" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vstx.ru.md b/content/viewer/net/vstx.ru.md new file mode 100644 index 00000000..4d6ba0e5 --- /dev/null +++ b/content/viewer/net/vstx.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSTX API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения VSTX в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "VSTX средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла VSTX в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла VSTX в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать VSTX в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл VSTX с полным путем. + 3. Установите параметры для преобразования файла VSTX в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл VSTX + string filePath = "input.vstx"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл VSTX в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "VSTX" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vstx.th.md b/content/viewer/net/vstx.th.md new file mode 100644 index 00000000..c6327ba3 --- /dev/null +++ b/content/viewer/net/vstx.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSTX Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง VSTX ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ VSTX สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ VSTX ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ VSTX ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล VSTX เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ VSTX ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ VSTX เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต VSTX + string filePath = "input.vstx"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ VSTX เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "VSTX" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vstx.uk.md b/content/viewer/net/vstx.uk.md new file mode 100644 index 00000000..309f2da1 --- /dev/null +++ b/content/viewer/net/vstx.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSTX Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення VSTX у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів VSTX для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу VSTX у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу VSTX у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити VSTX у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл VSTX із повним шляхом. + 3. Встановіть параметри для перетворення файлу VSTX у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл VSTX + string filePath = "input.vstx"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл VSTX у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "VSTX" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vstx.vi.md b/content/viewer/net/vstx.vi.md new file mode 100644 index 00000000..f357db48 --- /dev/null +++ b/content/viewer/net/vstx.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET VSTX - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị VSTX trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp VSTX dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp VSTX trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp VSTX trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị VSTX thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp VSTX với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp VSTX thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp VSTX đầu vào + string filePath = "input.vstx"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp VSTX thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "VSTX" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vstx.zh.md b/content/viewer/net/vstx.zh.md new file mode 100644 index 00000000..ad542a6f --- /dev/null +++ b/content/viewer/net/vstx.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSTX Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VSTX。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 VSTX 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VSTX 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 VSTX 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 VSTX 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 VSTX 文件。 + 3. 设置选项以将 VSTX 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 VSTX 文件 + string filePath = "input.vstx"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 VSTX 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "VSTX" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsx.de.md b/content/viewer/net/vsx.de.md new file mode 100644 index 00000000..63910c4b --- /dev/null +++ b/content/viewer/net/vsx.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSX Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VSX in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "VSX Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VSX-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der VSX-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie VSX in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei VSX mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei VSX im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei VSX ein + string filePath = "input.vsx"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei VSX mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "VSX" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsx.en.md b/content/viewer/net/vsx.en.md new file mode 100644 index 00000000..53fcbb80 --- /dev/null +++ b/content/viewer/net/vsx.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSX Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display VSX in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "VSX file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display VSX file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render VSX file in C#" + content: | + With GroupDocs.Viewer you can render VSX to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the VSX file with full path. + 3. Set options to render VSX file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input VSX file + string filePath = "input.vsx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render VSX file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "VSX" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsx.es.md b/content/viewer/net/vsx.es.md new file mode 100644 index 00000000..a6f24cf7 --- /dev/null +++ b/content/viewer/net/vsx.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSX API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar VSX en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "VSX visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos VSX en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo VSX en C#" + content: | + Con GroupDocs.Viewer puede renderizar VSX a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo VSX con la ruta completa. + 3. Configure opciones para representar el archivo VSX en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada VSX + string filePath = "input.vsx"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo VSX a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "VSX" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsx.fa.md b/content/viewer/net/vsx.fa.md new file mode 100644 index 00000000..baeb0a5e --- /dev/null +++ b/content/viewer/net/vsx.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSX بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش VSX در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل VSX برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل VSX در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل VSX در C#" + content: | + با GroupDocs.Viewer می‌توانید VSX را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل VSX را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل VSX در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی VSX را تنظیم کنید + string filePath = "input.vsx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل VSX را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "VSX" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsx.fr.md b/content/viewer/net/vsx.fr.md new file mode 100644 index 00000000..0088a96e --- /dev/null +++ b/content/viewer/net/vsx.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET VSX - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher VSX dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "VSX visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier VSX dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier VSX dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer VSX au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier VSX avec le chemin complet. + 3. Définissez les options pour restituer le fichier VSX au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée VSX + string filePath = "input.vsx"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier VSX au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "VSX" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsx.id.md b/content/viewer/net/vsx.id.md new file mode 100644 index 00000000..8642740b --- /dev/null +++ b/content/viewer/net/vsx.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSX Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan VSX di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "VSX penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file VSX dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file VSX di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender VSX ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file VSX dengan path lengkap. + 3. Tetapkan opsi untuk merender file VSX ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan VSX + string filePath = "input.vsx"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file VSX ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "VSX" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsx.it.md b/content/viewer/net/vsx.it.md new file mode 100644 index 00000000..b8cfdb44 --- /dev/null +++ b/content/viewer/net/vsx.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET VSX: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare VSX in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file VSX per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file VSX in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file VSX in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di VSX in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file VSX con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file VSX nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input VSX + string filePath = "input.vsx"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file VSX in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "VSX" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsx.ja.md b/content/viewer/net/vsx.ja.md new file mode 100644 index 00000000..1b404fde --- /dev/null +++ b/content/viewer/net/vsx.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSX ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VSX を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の VSX ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VSX ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で VSX ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で VSX を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、VSX ファイルをフルパスでロードします。 + 3. VSX ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 VSX ファイルを設定する + string filePath = "input.vsx"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた VSX ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "VSX" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsx.ko.md b/content/viewer/net/vsx.ko.md new file mode 100644 index 00000000..c60bb13e --- /dev/null +++ b/content/viewer/net/vsx.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSX 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VSX을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 VSX 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VSX 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 VSX 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 VSX을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 VSX 파일을 로드합니다. + 3. VSX 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 VSX 파일 설정 + string filePath = "input.vsx"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 VSX 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "VSX" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsx.pt.md b/content/viewer/net/vsx.pt.md new file mode 100644 index 00000000..eb458d71 --- /dev/null +++ b/content/viewer/net/vsx.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSX API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir VSX em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos VSX para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos VSX em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo VSX em C#" + content: | + Com GroupDocs.Viewer você pode renderizar VSX para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo VSX com caminho completo. + 3. Defina opções para renderizar o arquivo VSX em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada VSX + string filePath = "input.vsx"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo VSX em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "VSX" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsx.ru.md b/content/viewer/net/vsx.ru.md new file mode 100644 index 00000000..a61e96ed --- /dev/null +++ b/content/viewer/net/vsx.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSX API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения VSX в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "VSX средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла VSX в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла VSX в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать VSX в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл VSX с полным путем. + 3. Установите параметры для преобразования файла VSX в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл VSX + string filePath = "input.vsx"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл VSX в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "VSX" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsx.th.md b/content/viewer/net/vsx.th.md new file mode 100644 index 00000000..d8a33ec1 --- /dev/null +++ b/content/viewer/net/vsx.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSX Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง VSX ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ VSX สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ VSX ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ VSX ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล VSX เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ VSX ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ VSX เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต VSX + string filePath = "input.vsx"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ VSX เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "VSX" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsx.uk.md b/content/viewer/net/vsx.uk.md new file mode 100644 index 00000000..2f15e711 --- /dev/null +++ b/content/viewer/net/vsx.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSX Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення VSX у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів VSX для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу VSX у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу VSX у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити VSX у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл VSX із повним шляхом. + 3. Встановіть параметри для перетворення файлу VSX у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл VSX + string filePath = "input.vsx"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл VSX у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "VSX" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsx.vi.md b/content/viewer/net/vsx.vi.md new file mode 100644 index 00000000..ab314a72 --- /dev/null +++ b/content/viewer/net/vsx.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET VSX - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị VSX trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp VSX dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp VSX trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp VSX trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị VSX thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp VSX với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp VSX thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp VSX đầu vào + string filePath = "input.vsx"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp VSX thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "VSX" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vsx.zh.md b/content/viewer/net/vsx.zh.md new file mode 100644 index 00000000..d80330d0 --- /dev/null +++ b/content/viewer/net/vsx.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VSX Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VSX。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 VSX 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VSX 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 VSX 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 VSX 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 VSX 文件。 + 3. 设置选项以将 VSX 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 VSX 文件 + string filePath = "input.vsx"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 VSX 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "VSX" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vtx.de.md b/content/viewer/net/vtx.de.md new file mode 100644 index 00000000..809f819e --- /dev/null +++ b/content/viewer/net/vtx.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VTX Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VTX in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "VTX Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von VTX-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der VTX-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie VTX in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei VTX mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei VTX im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei VTX ein + string filePath = "input.vtx"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei VTX mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "VTX" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vtx.en.md b/content/viewer/net/vtx.en.md new file mode 100644 index 00000000..83b256fe --- /dev/null +++ b/content/viewer/net/vtx.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VTX Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display VTX in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "VTX file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display VTX file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render VTX file in C#" + content: | + With GroupDocs.Viewer you can render VTX to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the VTX file with full path. + 3. Set options to render VTX file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input VTX file + string filePath = "input.vtx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render VTX file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "VTX" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vtx.es.md b/content/viewer/net/vtx.es.md new file mode 100644 index 00000000..7911750c --- /dev/null +++ b/content/viewer/net/vtx.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VTX API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar VTX en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "VTX visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos VTX en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo VTX en C#" + content: | + Con GroupDocs.Viewer puede renderizar VTX a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo VTX con la ruta completa. + 3. Configure opciones para representar el archivo VTX en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada VTX + string filePath = "input.vtx"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo VTX a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "VTX" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vtx.fa.md b/content/viewer/net/vtx.fa.md new file mode 100644 index 00000000..d67be2d8 --- /dev/null +++ b/content/viewer/net/vtx.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VTX بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش VTX در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل VTX برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل VTX در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل VTX در C#" + content: | + با GroupDocs.Viewer می‌توانید VTX را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل VTX را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل VTX در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی VTX را تنظیم کنید + string filePath = "input.vtx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل VTX را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "VTX" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vtx.fr.md b/content/viewer/net/vtx.fr.md new file mode 100644 index 00000000..8b479b03 --- /dev/null +++ b/content/viewer/net/vtx.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET VTX - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher VTX dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "VTX visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier VTX dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier VTX dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer VTX au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier VTX avec le chemin complet. + 3. Définissez les options pour restituer le fichier VTX au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée VTX + string filePath = "input.vtx"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier VTX au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "VTX" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vtx.id.md b/content/viewer/net/vtx.id.md new file mode 100644 index 00000000..cf92eaaf --- /dev/null +++ b/content/viewer/net/vtx.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VTX Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan VTX di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "VTX penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file VTX dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file VTX di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender VTX ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file VTX dengan path lengkap. + 3. Tetapkan opsi untuk merender file VTX ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan VTX + string filePath = "input.vtx"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file VTX ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "VTX" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vtx.it.md b/content/viewer/net/vtx.it.md new file mode 100644 index 00000000..44188fb2 --- /dev/null +++ b/content/viewer/net/vtx.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET VTX: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare VTX in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file VTX per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file VTX in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file VTX in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di VTX in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file VTX con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file VTX nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input VTX + string filePath = "input.vtx"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file VTX in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "VTX" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vtx.ja.md b/content/viewer/net/vtx.ja.md new file mode 100644 index 00000000..24c3f0b0 --- /dev/null +++ b/content/viewer/net/vtx.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VTX ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VTX を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の VTX ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで VTX ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で VTX ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で VTX を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、VTX ファイルをフルパスでロードします。 + 3. VTX ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 VTX ファイルを設定する + string filePath = "input.vtx"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた VTX ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "VTX" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vtx.ko.md b/content/viewer/net/vtx.ko.md new file mode 100644 index 00000000..2be944c9 --- /dev/null +++ b/content/viewer/net/vtx.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VTX 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VTX을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 VTX 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 VTX 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 VTX 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 VTX을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 VTX 파일을 로드합니다. + 3. VTX 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 VTX 파일 설정 + string filePath = "input.vtx"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 VTX 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "VTX" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vtx.pt.md b/content/viewer/net/vtx.pt.md new file mode 100644 index 00000000..a8eb8231 --- /dev/null +++ b/content/viewer/net/vtx.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VTX API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir VTX em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos VTX para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos VTX em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo VTX em C#" + content: | + Com GroupDocs.Viewer você pode renderizar VTX para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo VTX com caminho completo. + 3. Defina opções para renderizar o arquivo VTX em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada VTX + string filePath = "input.vtx"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo VTX em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "VTX" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vtx.ru.md b/content/viewer/net/vtx.ru.md new file mode 100644 index 00000000..c790b5d0 --- /dev/null +++ b/content/viewer/net/vtx.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VTX API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения VTX в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "VTX средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла VTX в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла VTX в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать VTX в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл VTX с полным путем. + 3. Установите параметры для преобразования файла VTX в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл VTX + string filePath = "input.vtx"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл VTX в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "VTX" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vtx.th.md b/content/viewer/net/vtx.th.md new file mode 100644 index 00000000..a9747a82 --- /dev/null +++ b/content/viewer/net/vtx.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VTX Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง VTX ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ VTX สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ VTX ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ VTX ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล VTX เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ VTX ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ VTX เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต VTX + string filePath = "input.vtx"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ VTX เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "VTX" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vtx.uk.md b/content/viewer/net/vtx.uk.md new file mode 100644 index 00000000..b2bee541 --- /dev/null +++ b/content/viewer/net/vtx.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VTX Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення VTX у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів VTX для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу VTX у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу VTX у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити VTX у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл VTX із повним шляхом. + 3. Встановіть параметри для перетворення файлу VTX у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл VTX + string filePath = "input.vtx"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл VTX у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "VTX" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vtx.vi.md b/content/viewer/net/vtx.vi.md new file mode 100644 index 00000000..bbf0477f --- /dev/null +++ b/content/viewer/net/vtx.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET VTX - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị VTX trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp VTX dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp VTX trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp VTX trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị VTX thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp VTX với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp VTX thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp VTX đầu vào + string filePath = "input.vtx"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp VTX thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "VTX" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/vtx.zh.md b/content/viewer/net/vtx.zh.md new file mode 100644 index 00000000..75ec68a1 --- /dev/null +++ b/content/viewer/net/vtx.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET VTX Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VTX。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 VTX 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 VTX 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 VTX 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 VTX 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 VTX 文件。 + 3. 设置选项以将 VTX 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 VTX 文件 + string filePath = "input.vtx"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 VTX 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "VTX" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/web.de.md b/content/viewer/net/web.de.md new file mode 100644 index 00000000..f13ab352 --- /dev/null +++ b/content/viewer/net/web.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Web Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von Web in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "Web Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von Web-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der Web-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie Web in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei Web mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei Web im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei Web ein + string filePath = "input.html"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei Web mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "Web" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/web.en.md b/content/viewer/net/web.en.md new file mode 100644 index 00000000..946a1a27 --- /dev/null +++ b/content/viewer/net/web.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Web Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display Web in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "Web file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display Web file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render Web file in C#" + content: | + With GroupDocs.Viewer you can render Web to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the Web file with full path. + 3. Set options to render Web file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input Web file + string filePath = "input.html"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render Web file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "Web" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/web.es.md b/content/viewer/net/web.es.md new file mode 100644 index 00000000..ca843e30 --- /dev/null +++ b/content/viewer/net/web.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Web API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar Web en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "Web visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos Web en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo Web en C#" + content: | + Con GroupDocs.Viewer puede renderizar Web a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo Web con la ruta completa. + 3. Configure opciones para representar el archivo Web en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada Web + string filePath = "input.html"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo Web a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "Web" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/web.fa.md b/content/viewer/net/web.fa.md new file mode 100644 index 00000000..d88296c1 --- /dev/null +++ b/content/viewer/net/web.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Web بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش Web در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل Web برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل Web در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل Web در C#" + content: | + با GroupDocs.Viewer می‌توانید Web را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل Web را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل Web در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی Web را تنظیم کنید + string filePath = "input.html"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل Web را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "Web" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/web.fr.md b/content/viewer/net/web.fr.md new file mode 100644 index 00000000..5ae73818 --- /dev/null +++ b/content/viewer/net/web.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET Web - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher Web dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "Web visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier Web dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier Web dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer Web au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier Web avec le chemin complet. + 3. Définissez les options pour restituer le fichier Web au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée Web + string filePath = "input.html"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier Web au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "Web" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/web.id.md b/content/viewer/net/web.id.md new file mode 100644 index 00000000..bf8c0369 --- /dev/null +++ b/content/viewer/net/web.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Web Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan Web di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Web penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file Web dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file Web di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender Web ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file Web dengan path lengkap. + 3. Tetapkan opsi untuk merender file Web ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan Web + string filePath = "input.html"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file Web ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "Web" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/web.it.md b/content/viewer/net/web.it.md new file mode 100644 index 00000000..deea7030 --- /dev/null +++ b/content/viewer/net/web.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET Web: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare Web in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file Web per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file Web in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file Web in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di Web in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file Web con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file Web nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input Web + string filePath = "input.html"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file Web in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "Web" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/web.ja.md b/content/viewer/net/web.ja.md new file mode 100644 index 00000000..75c75980 --- /dev/null +++ b/content/viewer/net/web.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Web ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで Web を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の Web ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで Web ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で Web ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で Web を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、Web ファイルをフルパスでロードします。 + 3. Web ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 Web ファイルを設定する + string filePath = "input.html"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた Web ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "Web" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/web.ko.md b/content/viewer/net/web.ko.md new file mode 100644 index 00000000..b60a768f --- /dev/null +++ b/content/viewer/net/web.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Web 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 Web을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 Web 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 Web 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 Web 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 Web을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 Web 파일을 로드합니다. + 3. Web 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 Web 파일 설정 + string filePath = "input.html"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 Web 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "Web" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/web.pt.md b/content/viewer/net/web.pt.md new file mode 100644 index 00000000..3ac25f15 --- /dev/null +++ b/content/viewer/net/web.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Web API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir Web em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos Web para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos Web em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo Web em C#" + content: | + Com GroupDocs.Viewer você pode renderizar Web para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo Web com caminho completo. + 3. Defina opções para renderizar o arquivo Web em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada Web + string filePath = "input.html"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo Web em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "Web" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/web.ru.md b/content/viewer/net/web.ru.md new file mode 100644 index 00000000..99cd2c91 --- /dev/null +++ b/content/viewer/net/web.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Web API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения Web в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "Web средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла Web в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла Web в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать Web в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл Web с полным путем. + 3. Установите параметры для преобразования файла Web в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл Web + string filePath = "input.html"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл Web в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "Web" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/web.th.md b/content/viewer/net/web.th.md new file mode 100644 index 00000000..7d2ff78f --- /dev/null +++ b/content/viewer/net/web.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Web Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง Web ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ Web สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ Web ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ Web ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล Web เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ Web ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ Web เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต Web + string filePath = "input.html"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ Web เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "Web" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/web.uk.md b/content/viewer/net/web.uk.md new file mode 100644 index 00000000..d7f33917 --- /dev/null +++ b/content/viewer/net/web.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Web Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення Web у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів Web для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу Web у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу Web у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити Web у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл Web із повним шляхом. + 3. Встановіть параметри для перетворення файлу Web у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл Web + string filePath = "input.html"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл Web у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "Web" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/web.vi.md b/content/viewer/net/web.vi.md new file mode 100644 index 00000000..45763f03 --- /dev/null +++ b/content/viewer/net/web.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET Web - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị Web trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp Web dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp Web trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp Web trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị Web thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp Web với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp Web thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp Web đầu vào + string filePath = "input.html"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp Web thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "Web" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/web.zh.md b/content/viewer/net/web.zh.md new file mode 100644 index 00000000..35044466 --- /dev/null +++ b/content/viewer/net/web.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Web Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 Web。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 Web 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 Web 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 Web 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 Web 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 Web 文件。 + 3. 设置选项以将 Web 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 Web 文件 + string filePath = "input.html"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 Web 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "Web" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/webp.de.md b/content/viewer/net/webp.de.md new file mode 100644 index 00000000..a69153ac --- /dev/null +++ b/content/viewer/net/webp.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WEBP Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von WEBP in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "WEBP Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von WEBP-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der WEBP-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie WEBP in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei WEBP mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei WEBP im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei WEBP ein + string filePath = "input.webp"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei WEBP mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "WEBP" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/webp.en.md b/content/viewer/net/webp.en.md new file mode 100644 index 00000000..706931cb --- /dev/null +++ b/content/viewer/net/webp.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WEBP Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display WEBP in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "WEBP file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display WEBP file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render WEBP file in C#" + content: | + With GroupDocs.Viewer you can render WEBP to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the WEBP file with full path. + 3. Set options to render WEBP file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input WEBP file + string filePath = "input.webp"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render WEBP file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "WEBP" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/webp.es.md b/content/viewer/net/webp.es.md new file mode 100644 index 00000000..b7d889de --- /dev/null +++ b/content/viewer/net/webp.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WEBP API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar WEBP en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "WEBP visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos WEBP en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo WEBP en C#" + content: | + Con GroupDocs.Viewer puede renderizar WEBP a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo WEBP con la ruta completa. + 3. Configure opciones para representar el archivo WEBP en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada WEBP + string filePath = "input.webp"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo WEBP a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "WEBP" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/webp.fa.md b/content/viewer/net/webp.fa.md new file mode 100644 index 00000000..3e1e0075 --- /dev/null +++ b/content/viewer/net/webp.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WEBP بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش WEBP در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل WEBP برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل WEBP در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل WEBP در C#" + content: | + با GroupDocs.Viewer می‌توانید WEBP را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل WEBP را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل WEBP در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی WEBP را تنظیم کنید + string filePath = "input.webp"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل WEBP را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "WEBP" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/webp.fr.md b/content/viewer/net/webp.fr.md new file mode 100644 index 00000000..b2b37cc8 --- /dev/null +++ b/content/viewer/net/webp.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET WEBP - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher WEBP dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "WEBP visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier WEBP dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier WEBP dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer WEBP au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier WEBP avec le chemin complet. + 3. Définissez les options pour restituer le fichier WEBP au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée WEBP + string filePath = "input.webp"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier WEBP au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "WEBP" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/webp.id.md b/content/viewer/net/webp.id.md new file mode 100644 index 00000000..45735689 --- /dev/null +++ b/content/viewer/net/webp.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WEBP Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan WEBP di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "WEBP penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file WEBP dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file WEBP di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender WEBP ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file WEBP dengan path lengkap. + 3. Tetapkan opsi untuk merender file WEBP ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan WEBP + string filePath = "input.webp"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file WEBP ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "WEBP" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/webp.it.md b/content/viewer/net/webp.it.md new file mode 100644 index 00000000..79fcdf0d --- /dev/null +++ b/content/viewer/net/webp.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET WEBP: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare WEBP in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file WEBP per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file WEBP in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file WEBP in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di WEBP in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file WEBP con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file WEBP nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input WEBP + string filePath = "input.webp"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file WEBP in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "WEBP" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/webp.ja.md b/content/viewer/net/webp.ja.md new file mode 100644 index 00000000..0135ac6e --- /dev/null +++ b/content/viewer/net/webp.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WEBP ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで WEBP を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の WEBP ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで WEBP ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で WEBP ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で WEBP を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、WEBP ファイルをフルパスでロードします。 + 3. WEBP ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 WEBP ファイルを設定する + string filePath = "input.webp"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた WEBP ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "WEBP" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/webp.ko.md b/content/viewer/net/webp.ko.md new file mode 100644 index 00000000..feb9b1ac --- /dev/null +++ b/content/viewer/net/webp.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WEBP 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 WEBP을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 WEBP 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 WEBP 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 WEBP 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 WEBP을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 WEBP 파일을 로드합니다. + 3. WEBP 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 WEBP 파일 설정 + string filePath = "input.webp"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 WEBP 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "WEBP" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/webp.pt.md b/content/viewer/net/webp.pt.md new file mode 100644 index 00000000..b65b0033 --- /dev/null +++ b/content/viewer/net/webp.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WEBP API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir WEBP em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos WEBP para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos WEBP em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo WEBP em C#" + content: | + Com GroupDocs.Viewer você pode renderizar WEBP para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo WEBP com caminho completo. + 3. Defina opções para renderizar o arquivo WEBP em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada WEBP + string filePath = "input.webp"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo WEBP em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "WEBP" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/webp.ru.md b/content/viewer/net/webp.ru.md new file mode 100644 index 00000000..d1c21e61 --- /dev/null +++ b/content/viewer/net/webp.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WEBP API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения WEBP в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "WEBP средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла WEBP в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла WEBP в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать WEBP в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл WEBP с полным путем. + 3. Установите параметры для преобразования файла WEBP в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл WEBP + string filePath = "input.webp"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл WEBP в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "WEBP" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/webp.th.md b/content/viewer/net/webp.th.md new file mode 100644 index 00000000..0a8917b9 --- /dev/null +++ b/content/viewer/net/webp.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WEBP Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง WEBP ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ WEBP สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ WEBP ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ WEBP ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล WEBP เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ WEBP ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ WEBP เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต WEBP + string filePath = "input.webp"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ WEBP เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "WEBP" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/webp.uk.md b/content/viewer/net/webp.uk.md new file mode 100644 index 00000000..f8dfb90a --- /dev/null +++ b/content/viewer/net/webp.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WEBP Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення WEBP у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів WEBP для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу WEBP у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу WEBP у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити WEBP у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл WEBP із повним шляхом. + 3. Встановіть параметри для перетворення файлу WEBP у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл WEBP + string filePath = "input.webp"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл WEBP у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "WEBP" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/webp.vi.md b/content/viewer/net/webp.vi.md new file mode 100644 index 00000000..7ba7446c --- /dev/null +++ b/content/viewer/net/webp.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET WEBP - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị WEBP trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp WEBP dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp WEBP trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp WEBP trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị WEBP thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp WEBP với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp WEBP thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp WEBP đầu vào + string filePath = "input.webp"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp WEBP thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "WEBP" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/webp.zh.md b/content/viewer/net/webp.zh.md new file mode 100644 index 00000000..dcd00588 --- /dev/null +++ b/content/viewer/net/webp.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WEBP Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 WEBP。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 WEBP 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 WEBP 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 WEBP 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 WEBP 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 WEBP 文件。 + 3. 设置选项以将 WEBP 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 WEBP 文件 + string filePath = "input.webp"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 WEBP 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "WEBP" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/wmf.de.md b/content/viewer/net/wmf.de.md new file mode 100644 index 00000000..6b240d42 --- /dev/null +++ b/content/viewer/net/wmf.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WMF Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von WMF in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "WMF Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von WMF-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der WMF-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie WMF in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei WMF mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei WMF im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei WMF ein + string filePath = "input.wmf"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei WMF mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "WMF" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/wmf.en.md b/content/viewer/net/wmf.en.md new file mode 100644 index 00000000..5b6ca570 --- /dev/null +++ b/content/viewer/net/wmf.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WMF Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display WMF in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "WMF file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display WMF file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render WMF file in C#" + content: | + With GroupDocs.Viewer you can render WMF to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the WMF file with full path. + 3. Set options to render WMF file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input WMF file + string filePath = "input.wmf"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render WMF file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "WMF" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/wmf.es.md b/content/viewer/net/wmf.es.md new file mode 100644 index 00000000..2ec78112 --- /dev/null +++ b/content/viewer/net/wmf.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WMF API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar WMF en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "WMF visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos WMF en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo WMF en C#" + content: | + Con GroupDocs.Viewer puede renderizar WMF a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo WMF con la ruta completa. + 3. Configure opciones para representar el archivo WMF en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada WMF + string filePath = "input.wmf"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo WMF a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "WMF" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/wmf.fa.md b/content/viewer/net/wmf.fa.md new file mode 100644 index 00000000..a4909379 --- /dev/null +++ b/content/viewer/net/wmf.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WMF بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش WMF در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل WMF برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل WMF در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل WMF در C#" + content: | + با GroupDocs.Viewer می‌توانید WMF را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل WMF را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل WMF در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی WMF را تنظیم کنید + string filePath = "input.wmf"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل WMF را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "WMF" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/wmf.fr.md b/content/viewer/net/wmf.fr.md new file mode 100644 index 00000000..8921c620 --- /dev/null +++ b/content/viewer/net/wmf.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET WMF - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher WMF dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "WMF visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier WMF dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier WMF dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer WMF au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier WMF avec le chemin complet. + 3. Définissez les options pour restituer le fichier WMF au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée WMF + string filePath = "input.wmf"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier WMF au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "WMF" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/wmf.id.md b/content/viewer/net/wmf.id.md new file mode 100644 index 00000000..787460ca --- /dev/null +++ b/content/viewer/net/wmf.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WMF Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan WMF di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "WMF penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file WMF dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file WMF di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender WMF ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file WMF dengan path lengkap. + 3. Tetapkan opsi untuk merender file WMF ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan WMF + string filePath = "input.wmf"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file WMF ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "WMF" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/wmf.it.md b/content/viewer/net/wmf.it.md new file mode 100644 index 00000000..b7398ed4 --- /dev/null +++ b/content/viewer/net/wmf.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET WMF: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare WMF in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file WMF per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file WMF in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file WMF in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di WMF in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file WMF con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file WMF nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input WMF + string filePath = "input.wmf"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file WMF in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "WMF" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/wmf.ja.md b/content/viewer/net/wmf.ja.md new file mode 100644 index 00000000..932b944f --- /dev/null +++ b/content/viewer/net/wmf.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WMF ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで WMF を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の WMF ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで WMF ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で WMF ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で WMF を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、WMF ファイルをフルパスでロードします。 + 3. WMF ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 WMF ファイルを設定する + string filePath = "input.wmf"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた WMF ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "WMF" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/wmf.ko.md b/content/viewer/net/wmf.ko.md new file mode 100644 index 00000000..2b34b2d3 --- /dev/null +++ b/content/viewer/net/wmf.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WMF 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 WMF을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 WMF 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 WMF 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 WMF 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 WMF을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 WMF 파일을 로드합니다. + 3. WMF 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 WMF 파일 설정 + string filePath = "input.wmf"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 WMF 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "WMF" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/wmf.pt.md b/content/viewer/net/wmf.pt.md new file mode 100644 index 00000000..48d92906 --- /dev/null +++ b/content/viewer/net/wmf.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WMF API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir WMF em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos WMF para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos WMF em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo WMF em C#" + content: | + Com GroupDocs.Viewer você pode renderizar WMF para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo WMF com caminho completo. + 3. Defina opções para renderizar o arquivo WMF em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada WMF + string filePath = "input.wmf"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo WMF em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "WMF" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/wmf.ru.md b/content/viewer/net/wmf.ru.md new file mode 100644 index 00000000..b639b8e3 --- /dev/null +++ b/content/viewer/net/wmf.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WMF API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения WMF в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "WMF средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла WMF в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла WMF в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать WMF в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл WMF с полным путем. + 3. Установите параметры для преобразования файла WMF в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл WMF + string filePath = "input.wmf"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл WMF в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "WMF" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/wmf.th.md b/content/viewer/net/wmf.th.md new file mode 100644 index 00000000..980be410 --- /dev/null +++ b/content/viewer/net/wmf.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WMF Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง WMF ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ WMF สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ WMF ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ WMF ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล WMF เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ WMF ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ WMF เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต WMF + string filePath = "input.wmf"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ WMF เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "WMF" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/wmf.uk.md b/content/viewer/net/wmf.uk.md new file mode 100644 index 00000000..2d9148ec --- /dev/null +++ b/content/viewer/net/wmf.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WMF Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення WMF у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів WMF для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу WMF у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу WMF у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити WMF у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл WMF із повним шляхом. + 3. Встановіть параметри для перетворення файлу WMF у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл WMF + string filePath = "input.wmf"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл WMF у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "WMF" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/wmf.vi.md b/content/viewer/net/wmf.vi.md new file mode 100644 index 00000000..992613a4 --- /dev/null +++ b/content/viewer/net/wmf.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET WMF - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị WMF trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp WMF dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp WMF trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp WMF trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị WMF thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp WMF với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp WMF thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp WMF đầu vào + string filePath = "input.wmf"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp WMF thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "WMF" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/wmf.zh.md b/content/viewer/net/wmf.zh.md new file mode 100644 index 00000000..48b8f53b --- /dev/null +++ b/content/viewer/net/wmf.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WMF Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 WMF。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 WMF 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 WMF 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 WMF 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 WMF 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 WMF 文件。 + 3. 设置选项以将 WMF 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 WMF 文件 + string filePath = "input.wmf"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 WMF 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "WMF" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/wmz.de.md b/content/viewer/net/wmz.de.md new file mode 100644 index 00000000..01c0721b --- /dev/null +++ b/content/viewer/net/wmz.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WMZ Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von WMZ in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "WMZ Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von WMZ-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der WMZ-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie WMZ in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei WMZ mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei WMZ im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei WMZ ein + string filePath = "input.wmz"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei WMZ mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "WMZ" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/wmz.en.md b/content/viewer/net/wmz.en.md new file mode 100644 index 00000000..5b35bb19 --- /dev/null +++ b/content/viewer/net/wmz.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WMZ Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display WMZ in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "WMZ file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display WMZ file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render WMZ file in C#" + content: | + With GroupDocs.Viewer you can render WMZ to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the WMZ file with full path. + 3. Set options to render WMZ file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input WMZ file + string filePath = "input.wmz"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render WMZ file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "WMZ" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/wmz.es.md b/content/viewer/net/wmz.es.md new file mode 100644 index 00000000..fe5746de --- /dev/null +++ b/content/viewer/net/wmz.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WMZ API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar WMZ en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "WMZ visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos WMZ en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo WMZ en C#" + content: | + Con GroupDocs.Viewer puede renderizar WMZ a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo WMZ con la ruta completa. + 3. Configure opciones para representar el archivo WMZ en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada WMZ + string filePath = "input.wmz"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo WMZ a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "WMZ" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/wmz.fa.md b/content/viewer/net/wmz.fa.md new file mode 100644 index 00000000..e5588357 --- /dev/null +++ b/content/viewer/net/wmz.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WMZ بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش WMZ در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل WMZ برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل WMZ در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل WMZ در C#" + content: | + با GroupDocs.Viewer می‌توانید WMZ را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل WMZ را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل WMZ در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی WMZ را تنظیم کنید + string filePath = "input.wmz"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل WMZ را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "WMZ" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/wmz.fr.md b/content/viewer/net/wmz.fr.md new file mode 100644 index 00000000..ecd16f75 --- /dev/null +++ b/content/viewer/net/wmz.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET WMZ - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher WMZ dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "WMZ visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier WMZ dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier WMZ dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer WMZ au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier WMZ avec le chemin complet. + 3. Définissez les options pour restituer le fichier WMZ au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée WMZ + string filePath = "input.wmz"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier WMZ au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "WMZ" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/wmz.id.md b/content/viewer/net/wmz.id.md new file mode 100644 index 00000000..b41ec4a7 --- /dev/null +++ b/content/viewer/net/wmz.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WMZ Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan WMZ di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "WMZ penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file WMZ dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file WMZ di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender WMZ ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file WMZ dengan path lengkap. + 3. Tetapkan opsi untuk merender file WMZ ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan WMZ + string filePath = "input.wmz"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file WMZ ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "WMZ" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/wmz.it.md b/content/viewer/net/wmz.it.md new file mode 100644 index 00000000..48f7b9fe --- /dev/null +++ b/content/viewer/net/wmz.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET WMZ: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare WMZ in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file WMZ per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file WMZ in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file WMZ in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di WMZ in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file WMZ con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file WMZ nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input WMZ + string filePath = "input.wmz"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file WMZ in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "WMZ" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/wmz.ja.md b/content/viewer/net/wmz.ja.md new file mode 100644 index 00000000..0caf4db4 --- /dev/null +++ b/content/viewer/net/wmz.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WMZ ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで WMZ を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の WMZ ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで WMZ ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で WMZ ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で WMZ を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、WMZ ファイルをフルパスでロードします。 + 3. WMZ ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 WMZ ファイルを設定する + string filePath = "input.wmz"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた WMZ ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "WMZ" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/wmz.ko.md b/content/viewer/net/wmz.ko.md new file mode 100644 index 00000000..9f3261cf --- /dev/null +++ b/content/viewer/net/wmz.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WMZ 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 WMZ을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 WMZ 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 WMZ 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 WMZ 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 WMZ을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 WMZ 파일을 로드합니다. + 3. WMZ 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 WMZ 파일 설정 + string filePath = "input.wmz"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 WMZ 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "WMZ" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/wmz.pt.md b/content/viewer/net/wmz.pt.md new file mode 100644 index 00000000..2e866b5d --- /dev/null +++ b/content/viewer/net/wmz.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WMZ API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir WMZ em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos WMZ para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos WMZ em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo WMZ em C#" + content: | + Com GroupDocs.Viewer você pode renderizar WMZ para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo WMZ com caminho completo. + 3. Defina opções para renderizar o arquivo WMZ em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada WMZ + string filePath = "input.wmz"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo WMZ em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "WMZ" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/wmz.ru.md b/content/viewer/net/wmz.ru.md new file mode 100644 index 00000000..68803552 --- /dev/null +++ b/content/viewer/net/wmz.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WMZ API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения WMZ в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "WMZ средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла WMZ в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла WMZ в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать WMZ в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл WMZ с полным путем. + 3. Установите параметры для преобразования файла WMZ в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл WMZ + string filePath = "input.wmz"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл WMZ в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "WMZ" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/wmz.th.md b/content/viewer/net/wmz.th.md new file mode 100644 index 00000000..bc8bb3f4 --- /dev/null +++ b/content/viewer/net/wmz.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WMZ Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง WMZ ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ WMZ สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ WMZ ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ WMZ ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล WMZ เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ WMZ ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ WMZ เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต WMZ + string filePath = "input.wmz"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ WMZ เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "WMZ" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/wmz.uk.md b/content/viewer/net/wmz.uk.md new file mode 100644 index 00000000..417ae27e --- /dev/null +++ b/content/viewer/net/wmz.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WMZ Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення WMZ у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів WMZ для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу WMZ у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу WMZ у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити WMZ у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл WMZ із повним шляхом. + 3. Встановіть параметри для перетворення файлу WMZ у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл WMZ + string filePath = "input.wmz"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл WMZ у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "WMZ" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/wmz.vi.md b/content/viewer/net/wmz.vi.md new file mode 100644 index 00000000..8a9045d2 --- /dev/null +++ b/content/viewer/net/wmz.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET WMZ - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị WMZ trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp WMZ dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp WMZ trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp WMZ trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị WMZ thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp WMZ với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp WMZ thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp WMZ đầu vào + string filePath = "input.wmz"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp WMZ thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "WMZ" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/wmz.zh.md b/content/viewer/net/wmz.zh.md new file mode 100644 index 00000000..3ee3bda5 --- /dev/null +++ b/content/viewer/net/wmz.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET WMZ Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 WMZ。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 WMZ 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 WMZ 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 WMZ 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 WMZ 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 WMZ 文件。 + 3. 设置选项以将 WMZ 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 WMZ 文件 + string filePath = "input.wmz"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 WMZ 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "WMZ" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/word.de.md b/content/viewer/net/word.de.md new file mode 100644 index 00000000..46db4bae --- /dev/null +++ b/content/viewer/net/word.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Word Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von Word in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "Word Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von Word-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der Word-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie Word in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei Word mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei Word im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei Word ein + string filePath = "input.docx"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei Word mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "Word" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/word.en.md b/content/viewer/net/word.en.md new file mode 100644 index 00000000..5faf8c91 --- /dev/null +++ b/content/viewer/net/word.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Word Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display Word in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "Word file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display Word file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render Word file in C#" + content: | + With GroupDocs.Viewer you can render Word to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the Word file with full path. + 3. Set options to render Word file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input Word file + string filePath = "input.docx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render Word file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "Word" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/word.es.md b/content/viewer/net/word.es.md new file mode 100644 index 00000000..172b85c2 --- /dev/null +++ b/content/viewer/net/word.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Word API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar Word en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "Word visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos Word en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo Word en C#" + content: | + Con GroupDocs.Viewer puede renderizar Word a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo Word con la ruta completa. + 3. Configure opciones para representar el archivo Word en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada Word + string filePath = "input.docx"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo Word a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "Word" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/word.fa.md b/content/viewer/net/word.fa.md new file mode 100644 index 00000000..0bb80dc8 --- /dev/null +++ b/content/viewer/net/word.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Word بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش Word در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل Word برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل Word در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل Word در C#" + content: | + با GroupDocs.Viewer می‌توانید Word را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل Word را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل Word در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی Word را تنظیم کنید + string filePath = "input.docx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل Word را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "Word" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/word.fr.md b/content/viewer/net/word.fr.md new file mode 100644 index 00000000..d69b2f5a --- /dev/null +++ b/content/viewer/net/word.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET Word - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher Word dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "Word visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier Word dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier Word dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer Word au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier Word avec le chemin complet. + 3. Définissez les options pour restituer le fichier Word au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée Word + string filePath = "input.docx"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier Word au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "Word" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/word.id.md b/content/viewer/net/word.id.md new file mode 100644 index 00000000..882695ed --- /dev/null +++ b/content/viewer/net/word.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Word Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan Word di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Word penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file Word dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file Word di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender Word ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file Word dengan path lengkap. + 3. Tetapkan opsi untuk merender file Word ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan Word + string filePath = "input.docx"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file Word ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "Word" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/word.it.md b/content/viewer/net/word.it.md new file mode 100644 index 00000000..cd043757 --- /dev/null +++ b/content/viewer/net/word.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET Word: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare Word in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file Word per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file Word in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file Word in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di Word in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file Word con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file Word nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input Word + string filePath = "input.docx"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file Word in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "Word" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/word.ja.md b/content/viewer/net/word.ja.md new file mode 100644 index 00000000..41a44866 --- /dev/null +++ b/content/viewer/net/word.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Word ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで Word を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の Word ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで Word ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で Word ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で Word を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、Word ファイルをフルパスでロードします。 + 3. Word ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 Word ファイルを設定する + string filePath = "input.docx"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた Word ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "Word" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/word.ko.md b/content/viewer/net/word.ko.md new file mode 100644 index 00000000..723d978c --- /dev/null +++ b/content/viewer/net/word.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Word 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 Word을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 Word 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 Word 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 Word 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 Word을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 Word 파일을 로드합니다. + 3. Word 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 Word 파일 설정 + string filePath = "input.docx"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 Word 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "Word" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/word.pt.md b/content/viewer/net/word.pt.md new file mode 100644 index 00000000..2073d428 --- /dev/null +++ b/content/viewer/net/word.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Word API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir Word em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos Word para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos Word em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo Word em C#" + content: | + Com GroupDocs.Viewer você pode renderizar Word para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo Word com caminho completo. + 3. Defina opções para renderizar o arquivo Word em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada Word + string filePath = "input.docx"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo Word em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "Word" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/word.ru.md b/content/viewer/net/word.ru.md new file mode 100644 index 00000000..9cb0c041 --- /dev/null +++ b/content/viewer/net/word.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Word API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения Word в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "Word средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла Word в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла Word в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать Word в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл Word с полным путем. + 3. Установите параметры для преобразования файла Word в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл Word + string filePath = "input.docx"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл Word в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "Word" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/word.th.md b/content/viewer/net/word.th.md new file mode 100644 index 00000000..3e75d6f7 --- /dev/null +++ b/content/viewer/net/word.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Word Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง Word ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ Word สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ Word ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ Word ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล Word เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ Word ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ Word เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต Word + string filePath = "input.docx"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ Word เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "Word" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/word.uk.md b/content/viewer/net/word.uk.md new file mode 100644 index 00000000..2366b8a3 --- /dev/null +++ b/content/viewer/net/word.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Word Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення Word у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів Word для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу Word у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу Word у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити Word у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл Word із повним шляхом. + 3. Встановіть параметри для перетворення файлу Word у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл Word + string filePath = "input.docx"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл Word у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "Word" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/word.vi.md b/content/viewer/net/word.vi.md new file mode 100644 index 00000000..0dbd77ad --- /dev/null +++ b/content/viewer/net/word.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET Word - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị Word trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp Word dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp Word trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp Word trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị Word thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp Word với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp Word thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp Word đầu vào + string filePath = "input.docx"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp Word thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "Word" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/word.zh.md b/content/viewer/net/word.zh.md new file mode 100644 index 00000000..ba38b36b --- /dev/null +++ b/content/viewer/net/word.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Word Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 Word。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 Word 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 Word 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 Word 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 Word 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 Word 文件。 + 3. 设置选项以将 Word 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 Word 文件 + string filePath = "input.docx"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 Word 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "Word" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/worksheet.de.md b/content/viewer/net/worksheet.de.md new file mode 100644 index 00000000..3af863a8 --- /dev/null +++ b/content/viewer/net/worksheet.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Worksheet Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von Worksheet in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "Worksheet Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von Worksheet-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der Worksheet-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie Worksheet in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei Worksheet mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei Worksheet im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei Worksheet ein + string filePath = "input.xlsx"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei Worksheet mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "Worksheet" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/worksheet.en.md b/content/viewer/net/worksheet.en.md new file mode 100644 index 00000000..2b8c4e03 --- /dev/null +++ b/content/viewer/net/worksheet.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Worksheet Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display Worksheet in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "Worksheet file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display Worksheet file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render Worksheet file in C#" + content: | + With GroupDocs.Viewer you can render Worksheet to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the Worksheet file with full path. + 3. Set options to render Worksheet file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input Worksheet file + string filePath = "input.xlsx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render Worksheet file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "Worksheet" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/worksheet.es.md b/content/viewer/net/worksheet.es.md new file mode 100644 index 00000000..21cfe741 --- /dev/null +++ b/content/viewer/net/worksheet.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Worksheet API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar Worksheet en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "Worksheet visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos Worksheet en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo Worksheet en C#" + content: | + Con GroupDocs.Viewer puede renderizar Worksheet a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo Worksheet con la ruta completa. + 3. Configure opciones para representar el archivo Worksheet en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada Worksheet + string filePath = "input.xlsx"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo Worksheet a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "Worksheet" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/worksheet.fa.md b/content/viewer/net/worksheet.fa.md new file mode 100644 index 00000000..5400071b --- /dev/null +++ b/content/viewer/net/worksheet.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Worksheet بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش Worksheet در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل Worksheet برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل Worksheet در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل Worksheet در C#" + content: | + با GroupDocs.Viewer می‌توانید Worksheet را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل Worksheet را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل Worksheet در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی Worksheet را تنظیم کنید + string filePath = "input.xlsx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل Worksheet را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "Worksheet" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/worksheet.fr.md b/content/viewer/net/worksheet.fr.md new file mode 100644 index 00000000..927a3c84 --- /dev/null +++ b/content/viewer/net/worksheet.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET Worksheet - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher Worksheet dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "Worksheet visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier Worksheet dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier Worksheet dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer Worksheet au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier Worksheet avec le chemin complet. + 3. Définissez les options pour restituer le fichier Worksheet au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée Worksheet + string filePath = "input.xlsx"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier Worksheet au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "Worksheet" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/worksheet.id.md b/content/viewer/net/worksheet.id.md new file mode 100644 index 00000000..85ec669a --- /dev/null +++ b/content/viewer/net/worksheet.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Worksheet Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan Worksheet di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Worksheet penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file Worksheet dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file Worksheet di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender Worksheet ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file Worksheet dengan path lengkap. + 3. Tetapkan opsi untuk merender file Worksheet ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan Worksheet + string filePath = "input.xlsx"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file Worksheet ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "Worksheet" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/worksheet.it.md b/content/viewer/net/worksheet.it.md new file mode 100644 index 00000000..85fb2a5b --- /dev/null +++ b/content/viewer/net/worksheet.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET Worksheet: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare Worksheet in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file Worksheet per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file Worksheet in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file Worksheet in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di Worksheet in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file Worksheet con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file Worksheet nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input Worksheet + string filePath = "input.xlsx"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file Worksheet in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "Worksheet" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/worksheet.ja.md b/content/viewer/net/worksheet.ja.md new file mode 100644 index 00000000..2895c6f5 --- /dev/null +++ b/content/viewer/net/worksheet.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Worksheet ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで Worksheet を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の Worksheet ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで Worksheet ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で Worksheet ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で Worksheet を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、Worksheet ファイルをフルパスでロードします。 + 3. Worksheet ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 Worksheet ファイルを設定する + string filePath = "input.xlsx"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた Worksheet ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "Worksheet" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/worksheet.ko.md b/content/viewer/net/worksheet.ko.md new file mode 100644 index 00000000..dd50dcb9 --- /dev/null +++ b/content/viewer/net/worksheet.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Worksheet 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 Worksheet을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 Worksheet 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 Worksheet 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 Worksheet 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 Worksheet을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 Worksheet 파일을 로드합니다. + 3. Worksheet 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 Worksheet 파일 설정 + string filePath = "input.xlsx"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 Worksheet 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "Worksheet" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/worksheet.pt.md b/content/viewer/net/worksheet.pt.md new file mode 100644 index 00000000..2f64546a --- /dev/null +++ b/content/viewer/net/worksheet.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Worksheet API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir Worksheet em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos Worksheet para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos Worksheet em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo Worksheet em C#" + content: | + Com GroupDocs.Viewer você pode renderizar Worksheet para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo Worksheet com caminho completo. + 3. Defina opções para renderizar o arquivo Worksheet em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada Worksheet + string filePath = "input.xlsx"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo Worksheet em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "Worksheet" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/worksheet.ru.md b/content/viewer/net/worksheet.ru.md new file mode 100644 index 00000000..334bfcbf --- /dev/null +++ b/content/viewer/net/worksheet.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Worksheet API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения Worksheet в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "Worksheet средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла Worksheet в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла Worksheet в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать Worksheet в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл Worksheet с полным путем. + 3. Установите параметры для преобразования файла Worksheet в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл Worksheet + string filePath = "input.xlsx"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл Worksheet в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "Worksheet" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/worksheet.th.md b/content/viewer/net/worksheet.th.md new file mode 100644 index 00000000..5899003f --- /dev/null +++ b/content/viewer/net/worksheet.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Worksheet Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง Worksheet ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ Worksheet สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ Worksheet ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ Worksheet ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล Worksheet เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ Worksheet ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ Worksheet เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต Worksheet + string filePath = "input.xlsx"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ Worksheet เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "Worksheet" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/worksheet.uk.md b/content/viewer/net/worksheet.uk.md new file mode 100644 index 00000000..8c252418 --- /dev/null +++ b/content/viewer/net/worksheet.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Worksheet Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення Worksheet у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів Worksheet для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу Worksheet у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу Worksheet у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити Worksheet у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл Worksheet із повним шляхом. + 3. Встановіть параметри для перетворення файлу Worksheet у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл Worksheet + string filePath = "input.xlsx"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл Worksheet у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "Worksheet" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/worksheet.vi.md b/content/viewer/net/worksheet.vi.md new file mode 100644 index 00000000..0d4d7ee3 --- /dev/null +++ b/content/viewer/net/worksheet.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET Worksheet - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị Worksheet trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp Worksheet dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp Worksheet trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp Worksheet trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị Worksheet thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp Worksheet với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp Worksheet thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp Worksheet đầu vào + string filePath = "input.xlsx"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp Worksheet thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "Worksheet" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/worksheet.zh.md b/content/viewer/net/worksheet.zh.md new file mode 100644 index 00000000..2a814ff7 --- /dev/null +++ b/content/viewer/net/worksheet.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:25 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET Worksheet Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 Worksheet。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 Worksheet 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 Worksheet 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 Worksheet 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 Worksheet 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 Worksheet 文件。 + 3. 设置选项以将 Worksheet 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 Worksheet 文件 + string filePath = "input.xlsx"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 Worksheet 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "Worksheet" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlam.de.md b/content/viewer/net/xlam.de.md new file mode 100644 index 00000000..76860007 --- /dev/null +++ b/content/viewer/net/xlam.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLAM Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von XLAM in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "XLAM Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von XLAM-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der XLAM-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie XLAM in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei XLAM mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei XLAM im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei XLAM ein + string filePath = "input.xlam"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei XLAM mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "XLAM" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlam.en.md b/content/viewer/net/xlam.en.md new file mode 100644 index 00000000..d0594862 --- /dev/null +++ b/content/viewer/net/xlam.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLAM Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display XLAM in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "XLAM file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display XLAM file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render XLAM file in C#" + content: | + With GroupDocs.Viewer you can render XLAM to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the XLAM file with full path. + 3. Set options to render XLAM file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input XLAM file + string filePath = "input.xlam"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render XLAM file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "XLAM" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlam.es.md b/content/viewer/net/xlam.es.md new file mode 100644 index 00000000..bd9f3cdc --- /dev/null +++ b/content/viewer/net/xlam.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLAM API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar XLAM en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "XLAM visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos XLAM en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo XLAM en C#" + content: | + Con GroupDocs.Viewer puede renderizar XLAM a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo XLAM con la ruta completa. + 3. Configure opciones para representar el archivo XLAM en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada XLAM + string filePath = "input.xlam"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo XLAM a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "XLAM" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlam.fa.md b/content/viewer/net/xlam.fa.md new file mode 100644 index 00000000..ffcc6938 --- /dev/null +++ b/content/viewer/net/xlam.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLAM بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش XLAM در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل XLAM برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل XLAM در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل XLAM در C#" + content: | + با GroupDocs.Viewer می‌توانید XLAM را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل XLAM را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل XLAM در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی XLAM را تنظیم کنید + string filePath = "input.xlam"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل XLAM را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "XLAM" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlam.fr.md b/content/viewer/net/xlam.fr.md new file mode 100644 index 00000000..f3d7c120 --- /dev/null +++ b/content/viewer/net/xlam.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET XLAM - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher XLAM dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "XLAM visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier XLAM dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier XLAM dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer XLAM au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier XLAM avec le chemin complet. + 3. Définissez les options pour restituer le fichier XLAM au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée XLAM + string filePath = "input.xlam"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier XLAM au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "XLAM" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlam.id.md b/content/viewer/net/xlam.id.md new file mode 100644 index 00000000..df0e12c5 --- /dev/null +++ b/content/viewer/net/xlam.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLAM Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan XLAM di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "XLAM penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file XLAM dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file XLAM di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender XLAM ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file XLAM dengan path lengkap. + 3. Tetapkan opsi untuk merender file XLAM ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan XLAM + string filePath = "input.xlam"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file XLAM ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "XLAM" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlam.it.md b/content/viewer/net/xlam.it.md new file mode 100644 index 00000000..85f5716b --- /dev/null +++ b/content/viewer/net/xlam.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET XLAM: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare XLAM in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file XLAM per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file XLAM in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file XLAM in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di XLAM in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file XLAM con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file XLAM nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input XLAM + string filePath = "input.xlam"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file XLAM in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "XLAM" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlam.ja.md b/content/viewer/net/xlam.ja.md new file mode 100644 index 00000000..d9d3558c --- /dev/null +++ b/content/viewer/net/xlam.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLAM ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで XLAM を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の XLAM ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで XLAM ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で XLAM ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で XLAM を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、XLAM ファイルをフルパスでロードします。 + 3. XLAM ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 XLAM ファイルを設定する + string filePath = "input.xlam"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた XLAM ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "XLAM" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlam.ko.md b/content/viewer/net/xlam.ko.md new file mode 100644 index 00000000..16fece20 --- /dev/null +++ b/content/viewer/net/xlam.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLAM 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 XLAM을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 XLAM 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 XLAM 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 XLAM 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 XLAM을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 XLAM 파일을 로드합니다. + 3. XLAM 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 XLAM 파일 설정 + string filePath = "input.xlam"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 XLAM 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "XLAM" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlam.pt.md b/content/viewer/net/xlam.pt.md new file mode 100644 index 00000000..4be90e2f --- /dev/null +++ b/content/viewer/net/xlam.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLAM API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir XLAM em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos XLAM para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos XLAM em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo XLAM em C#" + content: | + Com GroupDocs.Viewer você pode renderizar XLAM para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo XLAM com caminho completo. + 3. Defina opções para renderizar o arquivo XLAM em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada XLAM + string filePath = "input.xlam"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo XLAM em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "XLAM" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlam.ru.md b/content/viewer/net/xlam.ru.md new file mode 100644 index 00000000..1d36205b --- /dev/null +++ b/content/viewer/net/xlam.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLAM API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения XLAM в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "XLAM средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла XLAM в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла XLAM в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать XLAM в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл XLAM с полным путем. + 3. Установите параметры для преобразования файла XLAM в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл XLAM + string filePath = "input.xlam"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл XLAM в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "XLAM" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlam.th.md b/content/viewer/net/xlam.th.md new file mode 100644 index 00000000..60e06985 --- /dev/null +++ b/content/viewer/net/xlam.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLAM Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง XLAM ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ XLAM สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ XLAM ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ XLAM ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล XLAM เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ XLAM ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ XLAM เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต XLAM + string filePath = "input.xlam"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ XLAM เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "XLAM" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlam.uk.md b/content/viewer/net/xlam.uk.md new file mode 100644 index 00000000..6b13f05c --- /dev/null +++ b/content/viewer/net/xlam.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLAM Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення XLAM у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів XLAM для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу XLAM у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу XLAM у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити XLAM у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл XLAM із повним шляхом. + 3. Встановіть параметри для перетворення файлу XLAM у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл XLAM + string filePath = "input.xlam"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл XLAM у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "XLAM" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlam.vi.md b/content/viewer/net/xlam.vi.md new file mode 100644 index 00000000..3f665b12 --- /dev/null +++ b/content/viewer/net/xlam.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET XLAM - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị XLAM trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp XLAM dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp XLAM trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp XLAM trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị XLAM thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp XLAM với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp XLAM thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp XLAM đầu vào + string filePath = "input.xlam"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp XLAM thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "XLAM" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlam.zh.md b/content/viewer/net/xlam.zh.md new file mode 100644 index 00000000..aeaaafb0 --- /dev/null +++ b/content/viewer/net/xlam.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLAM Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 XLAM。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 XLAM 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 XLAM 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 XLAM 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 XLAM 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 XLAM 文件。 + 3. 设置选项以将 XLAM 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 XLAM 文件 + string filePath = "input.xlam"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 XLAM 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "XLAM" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xls.de.md b/content/viewer/net/xls.de.md new file mode 100644 index 00000000..f72487c1 --- /dev/null +++ b/content/viewer/net/xls.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLS Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von XLS in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "XLS Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von XLS-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der XLS-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie XLS in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei XLS mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei XLS im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei XLS ein + string filePath = "input.xls"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei XLS mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "XLS" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xls.en.md b/content/viewer/net/xls.en.md new file mode 100644 index 00000000..8defb30f --- /dev/null +++ b/content/viewer/net/xls.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLS Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display XLS in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "XLS file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display XLS file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render XLS file in C#" + content: | + With GroupDocs.Viewer you can render XLS to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the XLS file with full path. + 3. Set options to render XLS file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input XLS file + string filePath = "input.xls"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render XLS file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "XLS" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xls.es.md b/content/viewer/net/xls.es.md new file mode 100644 index 00000000..68a6252b --- /dev/null +++ b/content/viewer/net/xls.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLS API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar XLS en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "XLS visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos XLS en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo XLS en C#" + content: | + Con GroupDocs.Viewer puede renderizar XLS a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo XLS con la ruta completa. + 3. Configure opciones para representar el archivo XLS en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada XLS + string filePath = "input.xls"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo XLS a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "XLS" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xls.fa.md b/content/viewer/net/xls.fa.md new file mode 100644 index 00000000..870355a4 --- /dev/null +++ b/content/viewer/net/xls.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLS بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش XLS در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل XLS برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل XLS در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل XLS در C#" + content: | + با GroupDocs.Viewer می‌توانید XLS را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل XLS را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل XLS در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی XLS را تنظیم کنید + string filePath = "input.xls"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل XLS را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "XLS" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xls.fr.md b/content/viewer/net/xls.fr.md new file mode 100644 index 00000000..cf97e79d --- /dev/null +++ b/content/viewer/net/xls.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET XLS - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher XLS dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "XLS visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier XLS dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier XLS dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer XLS au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier XLS avec le chemin complet. + 3. Définissez les options pour restituer le fichier XLS au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée XLS + string filePath = "input.xls"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier XLS au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "XLS" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xls.id.md b/content/viewer/net/xls.id.md new file mode 100644 index 00000000..8ad6cb9b --- /dev/null +++ b/content/viewer/net/xls.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLS Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan XLS di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "XLS penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file XLS dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file XLS di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender XLS ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file XLS dengan path lengkap. + 3. Tetapkan opsi untuk merender file XLS ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan XLS + string filePath = "input.xls"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file XLS ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "XLS" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xls.it.md b/content/viewer/net/xls.it.md new file mode 100644 index 00000000..5a7ba759 --- /dev/null +++ b/content/viewer/net/xls.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET XLS: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare XLS in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file XLS per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file XLS in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file XLS in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di XLS in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file XLS con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file XLS nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input XLS + string filePath = "input.xls"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file XLS in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "XLS" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xls.ja.md b/content/viewer/net/xls.ja.md new file mode 100644 index 00000000..69925451 --- /dev/null +++ b/content/viewer/net/xls.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLS ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで XLS を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の XLS ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで XLS ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で XLS ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で XLS を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、XLS ファイルをフルパスでロードします。 + 3. XLS ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 XLS ファイルを設定する + string filePath = "input.xls"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた XLS ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "XLS" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xls.ko.md b/content/viewer/net/xls.ko.md new file mode 100644 index 00000000..fbb3b538 --- /dev/null +++ b/content/viewer/net/xls.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLS 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 XLS을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 XLS 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 XLS 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 XLS 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 XLS을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 XLS 파일을 로드합니다. + 3. XLS 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 XLS 파일 설정 + string filePath = "input.xls"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 XLS 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "XLS" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xls.pt.md b/content/viewer/net/xls.pt.md new file mode 100644 index 00000000..8c05ae2a --- /dev/null +++ b/content/viewer/net/xls.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLS API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir XLS em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos XLS para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos XLS em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo XLS em C#" + content: | + Com GroupDocs.Viewer você pode renderizar XLS para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo XLS com caminho completo. + 3. Defina opções para renderizar o arquivo XLS em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada XLS + string filePath = "input.xls"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo XLS em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "XLS" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xls.ru.md b/content/viewer/net/xls.ru.md new file mode 100644 index 00000000..8022ce1f --- /dev/null +++ b/content/viewer/net/xls.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLS API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения XLS в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "XLS средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла XLS в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла XLS в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать XLS в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл XLS с полным путем. + 3. Установите параметры для преобразования файла XLS в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл XLS + string filePath = "input.xls"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл XLS в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "XLS" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xls.th.md b/content/viewer/net/xls.th.md new file mode 100644 index 00000000..adce64ef --- /dev/null +++ b/content/viewer/net/xls.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLS Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง XLS ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ XLS สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ XLS ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ XLS ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล XLS เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ XLS ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ XLS เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต XLS + string filePath = "input.xls"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ XLS เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "XLS" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xls.uk.md b/content/viewer/net/xls.uk.md new file mode 100644 index 00000000..52d874f7 --- /dev/null +++ b/content/viewer/net/xls.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLS Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення XLS у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів XLS для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу XLS у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу XLS у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити XLS у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл XLS із повним шляхом. + 3. Встановіть параметри для перетворення файлу XLS у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл XLS + string filePath = "input.xls"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл XLS у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "XLS" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xls.vi.md b/content/viewer/net/xls.vi.md new file mode 100644 index 00000000..17f706d2 --- /dev/null +++ b/content/viewer/net/xls.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET XLS - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị XLS trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp XLS dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp XLS trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp XLS trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị XLS thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp XLS với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp XLS thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp XLS đầu vào + string filePath = "input.xls"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp XLS thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "XLS" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xls.zh.md b/content/viewer/net/xls.zh.md new file mode 100644 index 00000000..b6e08985 --- /dev/null +++ b/content/viewer/net/xls.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLS Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 XLS。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 XLS 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 XLS 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 XLS 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 XLS 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 XLS 文件。 + 3. 设置选项以将 XLS 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 XLS 文件 + string filePath = "input.xls"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 XLS 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "XLS" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsb.de.md b/content/viewer/net/xlsb.de.md new file mode 100644 index 00000000..f36ff19b --- /dev/null +++ b/content/viewer/net/xlsb.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSB Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von XLSB in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "XLSB Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von XLSB-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der XLSB-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie XLSB in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei XLSB mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei XLSB im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei XLSB ein + string filePath = "input.xlsb"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei XLSB mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "XLSB" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsb.en.md b/content/viewer/net/xlsb.en.md new file mode 100644 index 00000000..7b328a0b --- /dev/null +++ b/content/viewer/net/xlsb.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSB Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display XLSB in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "XLSB file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display XLSB file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render XLSB file in C#" + content: | + With GroupDocs.Viewer you can render XLSB to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the XLSB file with full path. + 3. Set options to render XLSB file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input XLSB file + string filePath = "input.xlsb"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render XLSB file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "XLSB" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsb.es.md b/content/viewer/net/xlsb.es.md new file mode 100644 index 00000000..3736676e --- /dev/null +++ b/content/viewer/net/xlsb.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSB API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar XLSB en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "XLSB visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos XLSB en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo XLSB en C#" + content: | + Con GroupDocs.Viewer puede renderizar XLSB a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo XLSB con la ruta completa. + 3. Configure opciones para representar el archivo XLSB en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada XLSB + string filePath = "input.xlsb"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo XLSB a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "XLSB" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsb.fa.md b/content/viewer/net/xlsb.fa.md new file mode 100644 index 00000000..62e96ad9 --- /dev/null +++ b/content/viewer/net/xlsb.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSB بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش XLSB در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل XLSB برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل XLSB در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل XLSB در C#" + content: | + با GroupDocs.Viewer می‌توانید XLSB را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل XLSB را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل XLSB در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی XLSB را تنظیم کنید + string filePath = "input.xlsb"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل XLSB را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "XLSB" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsb.fr.md b/content/viewer/net/xlsb.fr.md new file mode 100644 index 00000000..42fbce36 --- /dev/null +++ b/content/viewer/net/xlsb.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET XLSB - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher XLSB dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "XLSB visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier XLSB dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier XLSB dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer XLSB au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier XLSB avec le chemin complet. + 3. Définissez les options pour restituer le fichier XLSB au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée XLSB + string filePath = "input.xlsb"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier XLSB au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "XLSB" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsb.id.md b/content/viewer/net/xlsb.id.md new file mode 100644 index 00000000..b2dec865 --- /dev/null +++ b/content/viewer/net/xlsb.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSB Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan XLSB di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "XLSB penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file XLSB dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file XLSB di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender XLSB ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file XLSB dengan path lengkap. + 3. Tetapkan opsi untuk merender file XLSB ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan XLSB + string filePath = "input.xlsb"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file XLSB ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "XLSB" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsb.it.md b/content/viewer/net/xlsb.it.md new file mode 100644 index 00000000..78481e71 --- /dev/null +++ b/content/viewer/net/xlsb.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET XLSB: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare XLSB in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file XLSB per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file XLSB in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file XLSB in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di XLSB in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file XLSB con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file XLSB nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input XLSB + string filePath = "input.xlsb"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file XLSB in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "XLSB" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsb.ja.md b/content/viewer/net/xlsb.ja.md new file mode 100644 index 00000000..ed2f454d --- /dev/null +++ b/content/viewer/net/xlsb.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSB ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで XLSB を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の XLSB ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで XLSB ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で XLSB ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で XLSB を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、XLSB ファイルをフルパスでロードします。 + 3. XLSB ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 XLSB ファイルを設定する + string filePath = "input.xlsb"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた XLSB ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "XLSB" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsb.ko.md b/content/viewer/net/xlsb.ko.md new file mode 100644 index 00000000..160b55e6 --- /dev/null +++ b/content/viewer/net/xlsb.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSB 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 XLSB을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 XLSB 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 XLSB 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 XLSB 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 XLSB을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 XLSB 파일을 로드합니다. + 3. XLSB 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 XLSB 파일 설정 + string filePath = "input.xlsb"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 XLSB 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "XLSB" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsb.pt.md b/content/viewer/net/xlsb.pt.md new file mode 100644 index 00000000..3ea705b5 --- /dev/null +++ b/content/viewer/net/xlsb.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSB API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir XLSB em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos XLSB para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos XLSB em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo XLSB em C#" + content: | + Com GroupDocs.Viewer você pode renderizar XLSB para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo XLSB com caminho completo. + 3. Defina opções para renderizar o arquivo XLSB em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada XLSB + string filePath = "input.xlsb"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo XLSB em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "XLSB" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsb.ru.md b/content/viewer/net/xlsb.ru.md new file mode 100644 index 00000000..2f163e29 --- /dev/null +++ b/content/viewer/net/xlsb.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSB API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения XLSB в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "XLSB средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла XLSB в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла XLSB в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать XLSB в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл XLSB с полным путем. + 3. Установите параметры для преобразования файла XLSB в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл XLSB + string filePath = "input.xlsb"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл XLSB в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "XLSB" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsb.th.md b/content/viewer/net/xlsb.th.md new file mode 100644 index 00000000..cd551a65 --- /dev/null +++ b/content/viewer/net/xlsb.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSB Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง XLSB ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ XLSB สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ XLSB ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ XLSB ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล XLSB เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ XLSB ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ XLSB เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต XLSB + string filePath = "input.xlsb"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ XLSB เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "XLSB" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsb.uk.md b/content/viewer/net/xlsb.uk.md new file mode 100644 index 00000000..b224651e --- /dev/null +++ b/content/viewer/net/xlsb.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSB Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення XLSB у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів XLSB для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу XLSB у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу XLSB у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити XLSB у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл XLSB із повним шляхом. + 3. Встановіть параметри для перетворення файлу XLSB у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл XLSB + string filePath = "input.xlsb"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл XLSB у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "XLSB" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsb.vi.md b/content/viewer/net/xlsb.vi.md new file mode 100644 index 00000000..02853e74 --- /dev/null +++ b/content/viewer/net/xlsb.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET XLSB - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị XLSB trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp XLSB dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp XLSB trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp XLSB trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị XLSB thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp XLSB với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp XLSB thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp XLSB đầu vào + string filePath = "input.xlsb"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp XLSB thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "XLSB" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsb.zh.md b/content/viewer/net/xlsb.zh.md new file mode 100644 index 00000000..40869868 --- /dev/null +++ b/content/viewer/net/xlsb.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSB Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 XLSB。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 XLSB 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 XLSB 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 XLSB 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 XLSB 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 XLSB 文件。 + 3. 设置选项以将 XLSB 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 XLSB 文件 + string filePath = "input.xlsb"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 XLSB 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "XLSB" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsm.de.md b/content/viewer/net/xlsm.de.md new file mode 100644 index 00000000..8a3f5212 --- /dev/null +++ b/content/viewer/net/xlsm.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSM Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von XLSM in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "XLSM Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von XLSM-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der XLSM-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie XLSM in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei XLSM mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei XLSM im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei XLSM ein + string filePath = "input.xlsm"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei XLSM mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "XLSM" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsm.en.md b/content/viewer/net/xlsm.en.md new file mode 100644 index 00000000..8f1557ab --- /dev/null +++ b/content/viewer/net/xlsm.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSM Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display XLSM in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "XLSM file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display XLSM file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render XLSM file in C#" + content: | + With GroupDocs.Viewer you can render XLSM to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the XLSM file with full path. + 3. Set options to render XLSM file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input XLSM file + string filePath = "input.xlsm"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render XLSM file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "XLSM" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsm.es.md b/content/viewer/net/xlsm.es.md new file mode 100644 index 00000000..c41eadef --- /dev/null +++ b/content/viewer/net/xlsm.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSM API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar XLSM en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "XLSM visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos XLSM en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo XLSM en C#" + content: | + Con GroupDocs.Viewer puede renderizar XLSM a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo XLSM con la ruta completa. + 3. Configure opciones para representar el archivo XLSM en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada XLSM + string filePath = "input.xlsm"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo XLSM a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "XLSM" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsm.fa.md b/content/viewer/net/xlsm.fa.md new file mode 100644 index 00000000..c2f3eb4d --- /dev/null +++ b/content/viewer/net/xlsm.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSM بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش XLSM در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل XLSM برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل XLSM در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل XLSM در C#" + content: | + با GroupDocs.Viewer می‌توانید XLSM را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل XLSM را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل XLSM در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی XLSM را تنظیم کنید + string filePath = "input.xlsm"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل XLSM را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "XLSM" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsm.fr.md b/content/viewer/net/xlsm.fr.md new file mode 100644 index 00000000..8a1bf39e --- /dev/null +++ b/content/viewer/net/xlsm.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET XLSM - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher XLSM dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "XLSM visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier XLSM dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier XLSM dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer XLSM au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier XLSM avec le chemin complet. + 3. Définissez les options pour restituer le fichier XLSM au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée XLSM + string filePath = "input.xlsm"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier XLSM au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "XLSM" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsm.id.md b/content/viewer/net/xlsm.id.md new file mode 100644 index 00000000..ba783cfa --- /dev/null +++ b/content/viewer/net/xlsm.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSM Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan XLSM di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "XLSM penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file XLSM dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file XLSM di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender XLSM ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file XLSM dengan path lengkap. + 3. Tetapkan opsi untuk merender file XLSM ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan XLSM + string filePath = "input.xlsm"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file XLSM ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "XLSM" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsm.it.md b/content/viewer/net/xlsm.it.md new file mode 100644 index 00000000..8ae6d3ed --- /dev/null +++ b/content/viewer/net/xlsm.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET XLSM: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare XLSM in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file XLSM per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file XLSM in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file XLSM in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di XLSM in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file XLSM con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file XLSM nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input XLSM + string filePath = "input.xlsm"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file XLSM in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "XLSM" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsm.ja.md b/content/viewer/net/xlsm.ja.md new file mode 100644 index 00000000..95a38ada --- /dev/null +++ b/content/viewer/net/xlsm.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSM ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで XLSM を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の XLSM ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで XLSM ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で XLSM ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で XLSM を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、XLSM ファイルをフルパスでロードします。 + 3. XLSM ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 XLSM ファイルを設定する + string filePath = "input.xlsm"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた XLSM ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "XLSM" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsm.ko.md b/content/viewer/net/xlsm.ko.md new file mode 100644 index 00000000..58d28896 --- /dev/null +++ b/content/viewer/net/xlsm.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSM 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 XLSM을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 XLSM 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 XLSM 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 XLSM 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 XLSM을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 XLSM 파일을 로드합니다. + 3. XLSM 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 XLSM 파일 설정 + string filePath = "input.xlsm"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 XLSM 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "XLSM" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsm.pt.md b/content/viewer/net/xlsm.pt.md new file mode 100644 index 00000000..7f4fa52a --- /dev/null +++ b/content/viewer/net/xlsm.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSM API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir XLSM em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos XLSM para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos XLSM em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo XLSM em C#" + content: | + Com GroupDocs.Viewer você pode renderizar XLSM para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo XLSM com caminho completo. + 3. Defina opções para renderizar o arquivo XLSM em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada XLSM + string filePath = "input.xlsm"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo XLSM em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "XLSM" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsm.ru.md b/content/viewer/net/xlsm.ru.md new file mode 100644 index 00000000..5373c467 --- /dev/null +++ b/content/viewer/net/xlsm.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSM API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения XLSM в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "XLSM средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла XLSM в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла XLSM в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать XLSM в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл XLSM с полным путем. + 3. Установите параметры для преобразования файла XLSM в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл XLSM + string filePath = "input.xlsm"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл XLSM в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "XLSM" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsm.th.md b/content/viewer/net/xlsm.th.md new file mode 100644 index 00000000..b1f58ed6 --- /dev/null +++ b/content/viewer/net/xlsm.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSM Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง XLSM ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ XLSM สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ XLSM ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ XLSM ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล XLSM เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ XLSM ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ XLSM เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต XLSM + string filePath = "input.xlsm"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ XLSM เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "XLSM" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsm.uk.md b/content/viewer/net/xlsm.uk.md new file mode 100644 index 00000000..06538f57 --- /dev/null +++ b/content/viewer/net/xlsm.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSM Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення XLSM у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів XLSM для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу XLSM у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу XLSM у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити XLSM у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл XLSM із повним шляхом. + 3. Встановіть параметри для перетворення файлу XLSM у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл XLSM + string filePath = "input.xlsm"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл XLSM у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "XLSM" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsm.vi.md b/content/viewer/net/xlsm.vi.md new file mode 100644 index 00000000..b59118eb --- /dev/null +++ b/content/viewer/net/xlsm.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET XLSM - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị XLSM trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp XLSM dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp XLSM trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp XLSM trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị XLSM thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp XLSM với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp XLSM thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp XLSM đầu vào + string filePath = "input.xlsm"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp XLSM thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "XLSM" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsm.zh.md b/content/viewer/net/xlsm.zh.md new file mode 100644 index 00000000..79254a3f --- /dev/null +++ b/content/viewer/net/xlsm.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSM Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 XLSM。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 XLSM 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 XLSM 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 XLSM 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 XLSM 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 XLSM 文件。 + 3. 设置选项以将 XLSM 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 XLSM 文件 + string filePath = "input.xlsm"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 XLSM 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "XLSM" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsx.de.md b/content/viewer/net/xlsx.de.md new file mode 100644 index 00000000..50720d5f --- /dev/null +++ b/content/viewer/net/xlsx.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSX Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von XLSX in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "XLSX Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von XLSX-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der XLSX-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie XLSX in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei XLSX mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei XLSX im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei XLSX ein + string filePath = "input.xlsx"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei XLSX mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "XLSX" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsx.en.md b/content/viewer/net/xlsx.en.md new file mode 100644 index 00000000..db7fff03 --- /dev/null +++ b/content/viewer/net/xlsx.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSX Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display XLSX in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "XLSX file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display XLSX file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render XLSX file in C#" + content: | + With GroupDocs.Viewer you can render XLSX to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the XLSX file with full path. + 3. Set options to render XLSX file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input XLSX file + string filePath = "input.xlsx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render XLSX file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "XLSX" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsx.es.md b/content/viewer/net/xlsx.es.md new file mode 100644 index 00000000..040890c6 --- /dev/null +++ b/content/viewer/net/xlsx.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSX API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar XLSX en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "XLSX visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos XLSX en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo XLSX en C#" + content: | + Con GroupDocs.Viewer puede renderizar XLSX a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo XLSX con la ruta completa. + 3. Configure opciones para representar el archivo XLSX en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada XLSX + string filePath = "input.xlsx"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo XLSX a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "XLSX" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsx.fa.md b/content/viewer/net/xlsx.fa.md new file mode 100644 index 00000000..04879293 --- /dev/null +++ b/content/viewer/net/xlsx.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSX بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش XLSX در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل XLSX برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل XLSX در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل XLSX در C#" + content: | + با GroupDocs.Viewer می‌توانید XLSX را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل XLSX را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل XLSX در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی XLSX را تنظیم کنید + string filePath = "input.xlsx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل XLSX را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "XLSX" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsx.fr.md b/content/viewer/net/xlsx.fr.md new file mode 100644 index 00000000..296faefc --- /dev/null +++ b/content/viewer/net/xlsx.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET XLSX - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher XLSX dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "XLSX visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier XLSX dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier XLSX dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer XLSX au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier XLSX avec le chemin complet. + 3. Définissez les options pour restituer le fichier XLSX au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée XLSX + string filePath = "input.xlsx"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier XLSX au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "XLSX" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsx.id.md b/content/viewer/net/xlsx.id.md new file mode 100644 index 00000000..b94d7840 --- /dev/null +++ b/content/viewer/net/xlsx.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSX Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan XLSX di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "XLSX penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file XLSX dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file XLSX di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender XLSX ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file XLSX dengan path lengkap. + 3. Tetapkan opsi untuk merender file XLSX ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan XLSX + string filePath = "input.xlsx"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file XLSX ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "XLSX" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsx.it.md b/content/viewer/net/xlsx.it.md new file mode 100644 index 00000000..55bb0067 --- /dev/null +++ b/content/viewer/net/xlsx.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET XLSX: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare XLSX in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file XLSX per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file XLSX in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file XLSX in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di XLSX in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file XLSX con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file XLSX nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input XLSX + string filePath = "input.xlsx"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file XLSX in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "XLSX" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsx.ja.md b/content/viewer/net/xlsx.ja.md new file mode 100644 index 00000000..864816ca --- /dev/null +++ b/content/viewer/net/xlsx.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSX ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで XLSX を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の XLSX ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで XLSX ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で XLSX ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で XLSX を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、XLSX ファイルをフルパスでロードします。 + 3. XLSX ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 XLSX ファイルを設定する + string filePath = "input.xlsx"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた XLSX ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "XLSX" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsx.ko.md b/content/viewer/net/xlsx.ko.md new file mode 100644 index 00000000..d809c25c --- /dev/null +++ b/content/viewer/net/xlsx.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSX 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 XLSX을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 XLSX 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 XLSX 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 XLSX 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 XLSX을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 XLSX 파일을 로드합니다. + 3. XLSX 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 XLSX 파일 설정 + string filePath = "input.xlsx"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 XLSX 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "XLSX" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsx.pt.md b/content/viewer/net/xlsx.pt.md new file mode 100644 index 00000000..6a4d606f --- /dev/null +++ b/content/viewer/net/xlsx.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSX API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir XLSX em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos XLSX para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos XLSX em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo XLSX em C#" + content: | + Com GroupDocs.Viewer você pode renderizar XLSX para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo XLSX com caminho completo. + 3. Defina opções para renderizar o arquivo XLSX em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada XLSX + string filePath = "input.xlsx"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo XLSX em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "XLSX" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsx.ru.md b/content/viewer/net/xlsx.ru.md new file mode 100644 index 00000000..317bfc2c --- /dev/null +++ b/content/viewer/net/xlsx.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSX API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения XLSX в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "XLSX средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла XLSX в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла XLSX в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать XLSX в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл XLSX с полным путем. + 3. Установите параметры для преобразования файла XLSX в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл XLSX + string filePath = "input.xlsx"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл XLSX в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "XLSX" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsx.th.md b/content/viewer/net/xlsx.th.md new file mode 100644 index 00000000..e4aa35d4 --- /dev/null +++ b/content/viewer/net/xlsx.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSX Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง XLSX ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ XLSX สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ XLSX ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ XLSX ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล XLSX เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ XLSX ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ XLSX เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต XLSX + string filePath = "input.xlsx"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ XLSX เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "XLSX" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsx.uk.md b/content/viewer/net/xlsx.uk.md new file mode 100644 index 00000000..4727b976 --- /dev/null +++ b/content/viewer/net/xlsx.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSX Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення XLSX у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів XLSX для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу XLSX у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу XLSX у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити XLSX у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл XLSX із повним шляхом. + 3. Встановіть параметри для перетворення файлу XLSX у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл XLSX + string filePath = "input.xlsx"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл XLSX у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "XLSX" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsx.vi.md b/content/viewer/net/xlsx.vi.md new file mode 100644 index 00000000..28d7f43a --- /dev/null +++ b/content/viewer/net/xlsx.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET XLSX - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị XLSX trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp XLSX dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp XLSX trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp XLSX trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị XLSX thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp XLSX với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp XLSX thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp XLSX đầu vào + string filePath = "input.xlsx"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp XLSX thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "XLSX" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlsx.zh.md b/content/viewer/net/xlsx.zh.md new file mode 100644 index 00000000..6a095ec6 --- /dev/null +++ b/content/viewer/net/xlsx.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLSX Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 XLSX。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 XLSX 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 XLSX 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 XLSX 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 XLSX 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 XLSX 文件。 + 3. 设置选项以将 XLSX 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 XLSX 文件 + string filePath = "input.xlsx"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 XLSX 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "XLSX" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlt.de.md b/content/viewer/net/xlt.de.md new file mode 100644 index 00000000..33710cab --- /dev/null +++ b/content/viewer/net/xlt.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLT Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von XLT in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "XLT Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von XLT-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der XLT-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie XLT in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei XLT mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei XLT im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei XLT ein + string filePath = "input.xlt"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei XLT mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "XLT" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlt.en.md b/content/viewer/net/xlt.en.md new file mode 100644 index 00000000..1d84dfb5 --- /dev/null +++ b/content/viewer/net/xlt.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLT Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display XLT in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "XLT file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display XLT file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render XLT file in C#" + content: | + With GroupDocs.Viewer you can render XLT to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the XLT file with full path. + 3. Set options to render XLT file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input XLT file + string filePath = "input.xlt"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render XLT file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "XLT" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlt.es.md b/content/viewer/net/xlt.es.md new file mode 100644 index 00000000..051f19d3 --- /dev/null +++ b/content/viewer/net/xlt.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLT API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar XLT en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "XLT visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos XLT en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo XLT en C#" + content: | + Con GroupDocs.Viewer puede renderizar XLT a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo XLT con la ruta completa. + 3. Configure opciones para representar el archivo XLT en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada XLT + string filePath = "input.xlt"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo XLT a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "XLT" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlt.fa.md b/content/viewer/net/xlt.fa.md new file mode 100644 index 00000000..2c28d656 --- /dev/null +++ b/content/viewer/net/xlt.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLT بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش XLT در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل XLT برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل XLT در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل XLT در C#" + content: | + با GroupDocs.Viewer می‌توانید XLT را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل XLT را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل XLT در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی XLT را تنظیم کنید + string filePath = "input.xlt"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل XLT را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "XLT" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlt.fr.md b/content/viewer/net/xlt.fr.md new file mode 100644 index 00000000..735cddf0 --- /dev/null +++ b/content/viewer/net/xlt.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET XLT - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher XLT dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "XLT visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier XLT dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier XLT dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer XLT au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier XLT avec le chemin complet. + 3. Définissez les options pour restituer le fichier XLT au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée XLT + string filePath = "input.xlt"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier XLT au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "XLT" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlt.id.md b/content/viewer/net/xlt.id.md new file mode 100644 index 00000000..8d528fc6 --- /dev/null +++ b/content/viewer/net/xlt.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLT Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan XLT di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "XLT penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file XLT dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file XLT di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender XLT ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file XLT dengan path lengkap. + 3. Tetapkan opsi untuk merender file XLT ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan XLT + string filePath = "input.xlt"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file XLT ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "XLT" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlt.it.md b/content/viewer/net/xlt.it.md new file mode 100644 index 00000000..f2811123 --- /dev/null +++ b/content/viewer/net/xlt.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET XLT: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare XLT in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file XLT per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file XLT in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file XLT in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di XLT in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file XLT con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file XLT nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input XLT + string filePath = "input.xlt"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file XLT in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "XLT" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlt.ja.md b/content/viewer/net/xlt.ja.md new file mode 100644 index 00000000..5bddb32b --- /dev/null +++ b/content/viewer/net/xlt.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLT ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで XLT を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の XLT ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで XLT ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で XLT ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で XLT を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、XLT ファイルをフルパスでロードします。 + 3. XLT ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 XLT ファイルを設定する + string filePath = "input.xlt"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた XLT ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "XLT" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlt.ko.md b/content/viewer/net/xlt.ko.md new file mode 100644 index 00000000..693d0c1c --- /dev/null +++ b/content/viewer/net/xlt.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLT 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 XLT을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 XLT 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 XLT 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 XLT 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 XLT을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 XLT 파일을 로드합니다. + 3. XLT 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 XLT 파일 설정 + string filePath = "input.xlt"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 XLT 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "XLT" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlt.pt.md b/content/viewer/net/xlt.pt.md new file mode 100644 index 00000000..43f297f5 --- /dev/null +++ b/content/viewer/net/xlt.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLT API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir XLT em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos XLT para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos XLT em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo XLT em C#" + content: | + Com GroupDocs.Viewer você pode renderizar XLT para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo XLT com caminho completo. + 3. Defina opções para renderizar o arquivo XLT em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada XLT + string filePath = "input.xlt"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo XLT em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "XLT" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlt.ru.md b/content/viewer/net/xlt.ru.md new file mode 100644 index 00000000..0dfcb78f --- /dev/null +++ b/content/viewer/net/xlt.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLT API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения XLT в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "XLT средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла XLT в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла XLT в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать XLT в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл XLT с полным путем. + 3. Установите параметры для преобразования файла XLT в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл XLT + string filePath = "input.xlt"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл XLT в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "XLT" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlt.th.md b/content/viewer/net/xlt.th.md new file mode 100644 index 00000000..ae85287b --- /dev/null +++ b/content/viewer/net/xlt.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLT Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง XLT ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ XLT สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ XLT ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ XLT ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล XLT เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ XLT ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ XLT เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต XLT + string filePath = "input.xlt"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ XLT เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "XLT" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlt.uk.md b/content/viewer/net/xlt.uk.md new file mode 100644 index 00000000..8e2aa777 --- /dev/null +++ b/content/viewer/net/xlt.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLT Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення XLT у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів XLT для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу XLT у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу XLT у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити XLT у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл XLT із повним шляхом. + 3. Встановіть параметри для перетворення файлу XLT у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл XLT + string filePath = "input.xlt"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл XLT у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "XLT" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlt.vi.md b/content/viewer/net/xlt.vi.md new file mode 100644 index 00000000..d82f792c --- /dev/null +++ b/content/viewer/net/xlt.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET XLT - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị XLT trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp XLT dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp XLT trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp XLT trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị XLT thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp XLT với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp XLT thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp XLT đầu vào + string filePath = "input.xlt"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp XLT thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "XLT" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xlt.zh.md b/content/viewer/net/xlt.zh.md new file mode 100644 index 00000000..560c5e4c --- /dev/null +++ b/content/viewer/net/xlt.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLT Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 XLT。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 XLT 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 XLT 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 XLT 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 XLT 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 XLT 文件。 + 3. 设置选项以将 XLT 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 XLT 文件 + string filePath = "input.xlt"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 XLT 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "XLT" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xltm.de.md b/content/viewer/net/xltm.de.md new file mode 100644 index 00000000..0692ac4a --- /dev/null +++ b/content/viewer/net/xltm.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLTM Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von XLTM in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "XLTM Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von XLTM-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der XLTM-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie XLTM in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei XLTM mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei XLTM im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei XLTM ein + string filePath = "input.xltm"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei XLTM mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "XLTM" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xltm.en.md b/content/viewer/net/xltm.en.md new file mode 100644 index 00000000..545eeb7e --- /dev/null +++ b/content/viewer/net/xltm.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLTM Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display XLTM in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "XLTM file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display XLTM file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render XLTM file in C#" + content: | + With GroupDocs.Viewer you can render XLTM to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the XLTM file with full path. + 3. Set options to render XLTM file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input XLTM file + string filePath = "input.xltm"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render XLTM file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "XLTM" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xltm.es.md b/content/viewer/net/xltm.es.md new file mode 100644 index 00000000..70378eef --- /dev/null +++ b/content/viewer/net/xltm.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLTM API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar XLTM en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "XLTM visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos XLTM en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo XLTM en C#" + content: | + Con GroupDocs.Viewer puede renderizar XLTM a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo XLTM con la ruta completa. + 3. Configure opciones para representar el archivo XLTM en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada XLTM + string filePath = "input.xltm"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo XLTM a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "XLTM" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xltm.fa.md b/content/viewer/net/xltm.fa.md new file mode 100644 index 00000000..a6a99bbf --- /dev/null +++ b/content/viewer/net/xltm.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLTM بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش XLTM در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل XLTM برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل XLTM در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل XLTM در C#" + content: | + با GroupDocs.Viewer می‌توانید XLTM را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل XLTM را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل XLTM در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی XLTM را تنظیم کنید + string filePath = "input.xltm"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل XLTM را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "XLTM" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xltm.fr.md b/content/viewer/net/xltm.fr.md new file mode 100644 index 00000000..2a6572d3 --- /dev/null +++ b/content/viewer/net/xltm.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET XLTM - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher XLTM dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "XLTM visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier XLTM dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier XLTM dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer XLTM au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier XLTM avec le chemin complet. + 3. Définissez les options pour restituer le fichier XLTM au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée XLTM + string filePath = "input.xltm"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier XLTM au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "XLTM" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xltm.id.md b/content/viewer/net/xltm.id.md new file mode 100644 index 00000000..235b6dcf --- /dev/null +++ b/content/viewer/net/xltm.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLTM Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan XLTM di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "XLTM penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file XLTM dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file XLTM di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender XLTM ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file XLTM dengan path lengkap. + 3. Tetapkan opsi untuk merender file XLTM ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan XLTM + string filePath = "input.xltm"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file XLTM ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "XLTM" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xltm.it.md b/content/viewer/net/xltm.it.md new file mode 100644 index 00000000..c9f1b709 --- /dev/null +++ b/content/viewer/net/xltm.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET XLTM: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare XLTM in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file XLTM per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file XLTM in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file XLTM in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di XLTM in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file XLTM con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file XLTM nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input XLTM + string filePath = "input.xltm"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file XLTM in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "XLTM" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xltm.ja.md b/content/viewer/net/xltm.ja.md new file mode 100644 index 00000000..c5c70889 --- /dev/null +++ b/content/viewer/net/xltm.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLTM ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで XLTM を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の XLTM ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで XLTM ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で XLTM ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で XLTM を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、XLTM ファイルをフルパスでロードします。 + 3. XLTM ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 XLTM ファイルを設定する + string filePath = "input.xltm"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた XLTM ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "XLTM" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xltm.ko.md b/content/viewer/net/xltm.ko.md new file mode 100644 index 00000000..dd8adfd7 --- /dev/null +++ b/content/viewer/net/xltm.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLTM 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 XLTM을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 XLTM 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 XLTM 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 XLTM 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 XLTM을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 XLTM 파일을 로드합니다. + 3. XLTM 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 XLTM 파일 설정 + string filePath = "input.xltm"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 XLTM 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "XLTM" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xltm.pt.md b/content/viewer/net/xltm.pt.md new file mode 100644 index 00000000..514b6ac6 --- /dev/null +++ b/content/viewer/net/xltm.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLTM API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir XLTM em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos XLTM para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos XLTM em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo XLTM em C#" + content: | + Com GroupDocs.Viewer você pode renderizar XLTM para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo XLTM com caminho completo. + 3. Defina opções para renderizar o arquivo XLTM em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada XLTM + string filePath = "input.xltm"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo XLTM em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "XLTM" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xltm.ru.md b/content/viewer/net/xltm.ru.md new file mode 100644 index 00000000..0bfa93b8 --- /dev/null +++ b/content/viewer/net/xltm.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLTM API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения XLTM в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "XLTM средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла XLTM в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла XLTM в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать XLTM в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл XLTM с полным путем. + 3. Установите параметры для преобразования файла XLTM в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл XLTM + string filePath = "input.xltm"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл XLTM в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "XLTM" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xltm.th.md b/content/viewer/net/xltm.th.md new file mode 100644 index 00000000..03c95eb6 --- /dev/null +++ b/content/viewer/net/xltm.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLTM Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง XLTM ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ XLTM สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ XLTM ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ XLTM ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล XLTM เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ XLTM ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ XLTM เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต XLTM + string filePath = "input.xltm"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ XLTM เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "XLTM" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xltm.uk.md b/content/viewer/net/xltm.uk.md new file mode 100644 index 00000000..5e1ff7e4 --- /dev/null +++ b/content/viewer/net/xltm.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLTM Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення XLTM у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів XLTM для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу XLTM у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу XLTM у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити XLTM у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл XLTM із повним шляхом. + 3. Встановіть параметри для перетворення файлу XLTM у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл XLTM + string filePath = "input.xltm"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл XLTM у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "XLTM" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xltm.vi.md b/content/viewer/net/xltm.vi.md new file mode 100644 index 00000000..4e9cd546 --- /dev/null +++ b/content/viewer/net/xltm.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET XLTM - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị XLTM trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp XLTM dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp XLTM trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp XLTM trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị XLTM thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp XLTM với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp XLTM thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp XLTM đầu vào + string filePath = "input.xltm"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp XLTM thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "XLTM" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xltm.zh.md b/content/viewer/net/xltm.zh.md new file mode 100644 index 00000000..a36a3aee --- /dev/null +++ b/content/viewer/net/xltm.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLTM Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 XLTM。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 XLTM 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 XLTM 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 XLTM 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 XLTM 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 XLTM 文件。 + 3. 设置选项以将 XLTM 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 XLTM 文件 + string filePath = "input.xltm"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 XLTM 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "XLTM" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xltx.de.md b/content/viewer/net/xltx.de.md new file mode 100644 index 00000000..140711b5 --- /dev/null +++ b/content/viewer/net/xltx.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLTX Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von XLTX in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "XLTX Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von XLTX-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der XLTX-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie XLTX in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei XLTX mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei XLTX im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei XLTX ein + string filePath = "input.xltx"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei XLTX mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "XLTX" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xltx.en.md b/content/viewer/net/xltx.en.md new file mode 100644 index 00000000..895c3946 --- /dev/null +++ b/content/viewer/net/xltx.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLTX Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display XLTX in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "XLTX file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display XLTX file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render XLTX file in C#" + content: | + With GroupDocs.Viewer you can render XLTX to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the XLTX file with full path. + 3. Set options to render XLTX file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input XLTX file + string filePath = "input.xltx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render XLTX file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "XLTX" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xltx.es.md b/content/viewer/net/xltx.es.md new file mode 100644 index 00000000..f10e4635 --- /dev/null +++ b/content/viewer/net/xltx.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLTX API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar XLTX en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "XLTX visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos XLTX en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo XLTX en C#" + content: | + Con GroupDocs.Viewer puede renderizar XLTX a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo XLTX con la ruta completa. + 3. Configure opciones para representar el archivo XLTX en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada XLTX + string filePath = "input.xltx"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo XLTX a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "XLTX" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xltx.fa.md b/content/viewer/net/xltx.fa.md new file mode 100644 index 00000000..be54179d --- /dev/null +++ b/content/viewer/net/xltx.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLTX بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش XLTX در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل XLTX برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل XLTX در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل XLTX در C#" + content: | + با GroupDocs.Viewer می‌توانید XLTX را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل XLTX را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل XLTX در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی XLTX را تنظیم کنید + string filePath = "input.xltx"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل XLTX را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "XLTX" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xltx.fr.md b/content/viewer/net/xltx.fr.md new file mode 100644 index 00000000..ab76c57c --- /dev/null +++ b/content/viewer/net/xltx.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET XLTX - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher XLTX dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "XLTX visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier XLTX dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier XLTX dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer XLTX au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier XLTX avec le chemin complet. + 3. Définissez les options pour restituer le fichier XLTX au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée XLTX + string filePath = "input.xltx"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier XLTX au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "XLTX" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xltx.id.md b/content/viewer/net/xltx.id.md new file mode 100644 index 00000000..44687313 --- /dev/null +++ b/content/viewer/net/xltx.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLTX Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan XLTX di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "XLTX penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file XLTX dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file XLTX di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender XLTX ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file XLTX dengan path lengkap. + 3. Tetapkan opsi untuk merender file XLTX ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan XLTX + string filePath = "input.xltx"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file XLTX ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "XLTX" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xltx.it.md b/content/viewer/net/xltx.it.md new file mode 100644 index 00000000..4a95e807 --- /dev/null +++ b/content/viewer/net/xltx.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET XLTX: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare XLTX in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file XLTX per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file XLTX in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file XLTX in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di XLTX in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file XLTX con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file XLTX nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input XLTX + string filePath = "input.xltx"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file XLTX in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "XLTX" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xltx.ja.md b/content/viewer/net/xltx.ja.md new file mode 100644 index 00000000..96315296 --- /dev/null +++ b/content/viewer/net/xltx.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLTX ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで XLTX を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の XLTX ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで XLTX ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で XLTX ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で XLTX を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、XLTX ファイルをフルパスでロードします。 + 3. XLTX ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 XLTX ファイルを設定する + string filePath = "input.xltx"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた XLTX ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "XLTX" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xltx.ko.md b/content/viewer/net/xltx.ko.md new file mode 100644 index 00000000..8fa592ca --- /dev/null +++ b/content/viewer/net/xltx.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLTX 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 XLTX을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 XLTX 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 XLTX 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 XLTX 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 XLTX을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 XLTX 파일을 로드합니다. + 3. XLTX 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 XLTX 파일 설정 + string filePath = "input.xltx"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 XLTX 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "XLTX" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xltx.pt.md b/content/viewer/net/xltx.pt.md new file mode 100644 index 00000000..d802069e --- /dev/null +++ b/content/viewer/net/xltx.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLTX API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir XLTX em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos XLTX para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos XLTX em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo XLTX em C#" + content: | + Com GroupDocs.Viewer você pode renderizar XLTX para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo XLTX com caminho completo. + 3. Defina opções para renderizar o arquivo XLTX em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada XLTX + string filePath = "input.xltx"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo XLTX em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "XLTX" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xltx.ru.md b/content/viewer/net/xltx.ru.md new file mode 100644 index 00000000..1f56081a --- /dev/null +++ b/content/viewer/net/xltx.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLTX API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения XLTX в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "XLTX средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла XLTX в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла XLTX в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать XLTX в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл XLTX с полным путем. + 3. Установите параметры для преобразования файла XLTX в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл XLTX + string filePath = "input.xltx"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл XLTX в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "XLTX" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xltx.th.md b/content/viewer/net/xltx.th.md new file mode 100644 index 00000000..b0fa259c --- /dev/null +++ b/content/viewer/net/xltx.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLTX Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง XLTX ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ XLTX สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ XLTX ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ XLTX ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล XLTX เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ XLTX ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ XLTX เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต XLTX + string filePath = "input.xltx"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ XLTX เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "XLTX" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xltx.uk.md b/content/viewer/net/xltx.uk.md new file mode 100644 index 00000000..734d4cd7 --- /dev/null +++ b/content/viewer/net/xltx.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLTX Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення XLTX у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів XLTX для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу XLTX у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу XLTX у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити XLTX у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл XLTX із повним шляхом. + 3. Встановіть параметри для перетворення файлу XLTX у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл XLTX + string filePath = "input.xltx"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл XLTX у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "XLTX" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xltx.vi.md b/content/viewer/net/xltx.vi.md new file mode 100644 index 00000000..dbcb8ae2 --- /dev/null +++ b/content/viewer/net/xltx.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET XLTX - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị XLTX trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp XLTX dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp XLTX trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp XLTX trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị XLTX thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp XLTX với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp XLTX thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp XLTX đầu vào + string filePath = "input.xltx"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp XLTX thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "XLTX" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xltx.zh.md b/content/viewer/net/xltx.zh.md new file mode 100644 index 00000000..e6212537 --- /dev/null +++ b/content/viewer/net/xltx.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XLTX Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 XLTX。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 XLTX 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 XLTX 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 XLTX 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 XLTX 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 XLTX 文件。 + 3. 设置选项以将 XLTX 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 XLTX 文件 + string filePath = "input.xltx"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 XLTX 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "XLTX" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xml.de.md b/content/viewer/net/xml.de.md new file mode 100644 index 00000000..a46bef86 --- /dev/null +++ b/content/viewer/net/xml.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XML Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von XML in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "XML Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von XML-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der XML-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie XML in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei XML mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei XML im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei XML ein + string filePath = "input.xml"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei XML mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "XML" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xml.en.md b/content/viewer/net/xml.en.md new file mode 100644 index 00000000..34d142bf --- /dev/null +++ b/content/viewer/net/xml.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XML Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display XML in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "XML file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display XML file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render XML file in C#" + content: | + With GroupDocs.Viewer you can render XML to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the XML file with full path. + 3. Set options to render XML file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input XML file + string filePath = "input.xml"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render XML file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "XML" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xml.es.md b/content/viewer/net/xml.es.md new file mode 100644 index 00000000..18ff3fe8 --- /dev/null +++ b/content/viewer/net/xml.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XML API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar XML en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "XML visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos XML en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo XML en C#" + content: | + Con GroupDocs.Viewer puede renderizar XML a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo XML con la ruta completa. + 3. Configure opciones para representar el archivo XML en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada XML + string filePath = "input.xml"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo XML a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "XML" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xml.fa.md b/content/viewer/net/xml.fa.md new file mode 100644 index 00000000..25e280d4 --- /dev/null +++ b/content/viewer/net/xml.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XML بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش XML در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل XML برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل XML در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل XML در C#" + content: | + با GroupDocs.Viewer می‌توانید XML را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل XML را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل XML در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی XML را تنظیم کنید + string filePath = "input.xml"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل XML را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "XML" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xml.fr.md b/content/viewer/net/xml.fr.md new file mode 100644 index 00000000..ce604c5c --- /dev/null +++ b/content/viewer/net/xml.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET XML - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher XML dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "XML visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier XML dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier XML dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer XML au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier XML avec le chemin complet. + 3. Définissez les options pour restituer le fichier XML au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée XML + string filePath = "input.xml"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier XML au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "XML" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xml.id.md b/content/viewer/net/xml.id.md new file mode 100644 index 00000000..89d683da --- /dev/null +++ b/content/viewer/net/xml.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XML Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan XML di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "XML penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file XML dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file XML di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender XML ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file XML dengan path lengkap. + 3. Tetapkan opsi untuk merender file XML ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan XML + string filePath = "input.xml"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file XML ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "XML" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xml.it.md b/content/viewer/net/xml.it.md new file mode 100644 index 00000000..835b1f6f --- /dev/null +++ b/content/viewer/net/xml.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET XML: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare XML in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file XML per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file XML in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file XML in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di XML in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file XML con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file XML nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input XML + string filePath = "input.xml"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file XML in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "XML" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xml.ja.md b/content/viewer/net/xml.ja.md new file mode 100644 index 00000000..bf54139a --- /dev/null +++ b/content/viewer/net/xml.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XML ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで XML を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の XML ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで XML ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で XML ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で XML を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、XML ファイルをフルパスでロードします。 + 3. XML ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 XML ファイルを設定する + string filePath = "input.xml"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた XML ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "XML" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xml.ko.md b/content/viewer/net/xml.ko.md new file mode 100644 index 00000000..578ad260 --- /dev/null +++ b/content/viewer/net/xml.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XML 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 XML을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 XML 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 XML 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 XML 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 XML을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 XML 파일을 로드합니다. + 3. XML 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 XML 파일 설정 + string filePath = "input.xml"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 XML 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "XML" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xml.pt.md b/content/viewer/net/xml.pt.md new file mode 100644 index 00000000..2d2455f4 --- /dev/null +++ b/content/viewer/net/xml.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XML API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir XML em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos XML para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos XML em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo XML em C#" + content: | + Com GroupDocs.Viewer você pode renderizar XML para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo XML com caminho completo. + 3. Defina opções para renderizar o arquivo XML em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada XML + string filePath = "input.xml"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo XML em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "XML" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xml.ru.md b/content/viewer/net/xml.ru.md new file mode 100644 index 00000000..1dfd8af6 --- /dev/null +++ b/content/viewer/net/xml.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XML API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения XML в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "XML средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла XML в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла XML в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать XML в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл XML с полным путем. + 3. Установите параметры для преобразования файла XML в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл XML + string filePath = "input.xml"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл XML в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "XML" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xml.th.md b/content/viewer/net/xml.th.md new file mode 100644 index 00000000..f19fe629 --- /dev/null +++ b/content/viewer/net/xml.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XML Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง XML ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ XML สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ XML ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ XML ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล XML เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ XML ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ XML เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต XML + string filePath = "input.xml"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ XML เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "XML" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xml.uk.md b/content/viewer/net/xml.uk.md new file mode 100644 index 00000000..664e1d21 --- /dev/null +++ b/content/viewer/net/xml.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XML Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення XML у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів XML для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу XML у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу XML у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити XML у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл XML із повним шляхом. + 3. Встановіть параметри для перетворення файлу XML у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл XML + string filePath = "input.xml"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл XML у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "XML" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xml.vi.md b/content/viewer/net/xml.vi.md new file mode 100644 index 00000000..fe3306e0 --- /dev/null +++ b/content/viewer/net/xml.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET XML - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị XML trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp XML dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp XML trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp XML trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị XML thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp XML với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp XML thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp XML đầu vào + string filePath = "input.xml"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp XML thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "XML" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xml.zh.md b/content/viewer/net/xml.zh.md new file mode 100644 index 00000000..667ea837 --- /dev/null +++ b/content/viewer/net/xml.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XML Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 XML。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 XML 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 XML 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 XML 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 XML 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 XML 文件。 + 3. 设置选项以将 XML 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 XML 文件 + string filePath = "input.xml"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 XML 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "XML" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xps.de.md b/content/viewer/net/xps.de.md new file mode 100644 index 00000000..2943051d --- /dev/null +++ b/content/viewer/net/xps.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XPS Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von XPS in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "XPS Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von XPS-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der XPS-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie XPS in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei XPS mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei XPS im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei XPS ein + string filePath = "input.xps"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei XPS mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "XPS" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xps.en.md b/content/viewer/net/xps.en.md new file mode 100644 index 00000000..1de5d3e2 --- /dev/null +++ b/content/viewer/net/xps.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XPS Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display XPS in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "XPS file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display XPS file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render XPS file in C#" + content: | + With GroupDocs.Viewer you can render XPS to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the XPS file with full path. + 3. Set options to render XPS file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input XPS file + string filePath = "input.xps"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render XPS file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "XPS" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xps.es.md b/content/viewer/net/xps.es.md new file mode 100644 index 00000000..4a21ef15 --- /dev/null +++ b/content/viewer/net/xps.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XPS API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar XPS en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "XPS visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos XPS en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo XPS en C#" + content: | + Con GroupDocs.Viewer puede renderizar XPS a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo XPS con la ruta completa. + 3. Configure opciones para representar el archivo XPS en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada XPS + string filePath = "input.xps"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo XPS a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "XPS" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xps.fa.md b/content/viewer/net/xps.fa.md new file mode 100644 index 00000000..d7d8c882 --- /dev/null +++ b/content/viewer/net/xps.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XPS بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش XPS در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل XPS برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل XPS در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل XPS در C#" + content: | + با GroupDocs.Viewer می‌توانید XPS را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل XPS را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل XPS در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی XPS را تنظیم کنید + string filePath = "input.xps"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل XPS را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "XPS" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xps.fr.md b/content/viewer/net/xps.fr.md new file mode 100644 index 00000000..2fc98876 --- /dev/null +++ b/content/viewer/net/xps.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET XPS - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher XPS dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "XPS visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier XPS dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier XPS dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer XPS au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier XPS avec le chemin complet. + 3. Définissez les options pour restituer le fichier XPS au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée XPS + string filePath = "input.xps"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier XPS au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "XPS" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xps.id.md b/content/viewer/net/xps.id.md new file mode 100644 index 00000000..9c1575c4 --- /dev/null +++ b/content/viewer/net/xps.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XPS Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan XPS di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "XPS penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file XPS dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file XPS di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender XPS ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file XPS dengan path lengkap. + 3. Tetapkan opsi untuk merender file XPS ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan XPS + string filePath = "input.xps"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file XPS ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "XPS" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xps.it.md b/content/viewer/net/xps.it.md new file mode 100644 index 00000000..afd8bdce --- /dev/null +++ b/content/viewer/net/xps.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET XPS: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare XPS in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file XPS per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file XPS in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file XPS in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di XPS in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file XPS con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file XPS nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input XPS + string filePath = "input.xps"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file XPS in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "XPS" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xps.ja.md b/content/viewer/net/xps.ja.md new file mode 100644 index 00000000..e5ebdbec --- /dev/null +++ b/content/viewer/net/xps.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XPS ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで XPS を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の XPS ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで XPS ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で XPS ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で XPS を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、XPS ファイルをフルパスでロードします。 + 3. XPS ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 XPS ファイルを設定する + string filePath = "input.xps"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた XPS ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "XPS" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xps.ko.md b/content/viewer/net/xps.ko.md new file mode 100644 index 00000000..616631ee --- /dev/null +++ b/content/viewer/net/xps.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XPS 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 XPS을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 XPS 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 XPS 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 XPS 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 XPS을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 XPS 파일을 로드합니다. + 3. XPS 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 XPS 파일 설정 + string filePath = "input.xps"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 XPS 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "XPS" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xps.pt.md b/content/viewer/net/xps.pt.md new file mode 100644 index 00000000..66a8288d --- /dev/null +++ b/content/viewer/net/xps.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XPS API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir XPS em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos XPS para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos XPS em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo XPS em C#" + content: | + Com GroupDocs.Viewer você pode renderizar XPS para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo XPS com caminho completo. + 3. Defina opções para renderizar o arquivo XPS em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada XPS + string filePath = "input.xps"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo XPS em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "XPS" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xps.ru.md b/content/viewer/net/xps.ru.md new file mode 100644 index 00000000..10605554 --- /dev/null +++ b/content/viewer/net/xps.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XPS API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения XPS в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "XPS средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла XPS в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла XPS в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать XPS в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл XPS с полным путем. + 3. Установите параметры для преобразования файла XPS в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл XPS + string filePath = "input.xps"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл XPS в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "XPS" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xps.th.md b/content/viewer/net/xps.th.md new file mode 100644 index 00000000..c65bdf2c --- /dev/null +++ b/content/viewer/net/xps.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XPS Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง XPS ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ XPS สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ XPS ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ XPS ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล XPS เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ XPS ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ XPS เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต XPS + string filePath = "input.xps"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ XPS เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "XPS" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xps.uk.md b/content/viewer/net/xps.uk.md new file mode 100644 index 00000000..19b9827c --- /dev/null +++ b/content/viewer/net/xps.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XPS Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення XPS у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів XPS для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу XPS у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу XPS у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити XPS у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл XPS із повним шляхом. + 3. Встановіть параметри для перетворення файлу XPS у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл XPS + string filePath = "input.xps"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл XPS у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "XPS" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xps.vi.md b/content/viewer/net/xps.vi.md new file mode 100644 index 00000000..4b661e42 --- /dev/null +++ b/content/viewer/net/xps.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET XPS - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị XPS trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp XPS dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp XPS trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp XPS trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị XPS thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp XPS với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp XPS thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp XPS đầu vào + string filePath = "input.xps"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp XPS thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "XPS" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xps.zh.md b/content/viewer/net/xps.zh.md new file mode 100644 index 00000000..fc4c9050 --- /dev/null +++ b/content/viewer/net/xps.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XPS Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 XPS。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 XPS 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 XPS 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 XPS 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 XPS 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 XPS 文件。 + 3. 设置选项以将 XPS 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 XPS 文件 + string filePath = "input.xps"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 XPS 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "XPS" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xz.de.md b/content/viewer/net/xz.de.md new file mode 100644 index 00000000..999f96d8 --- /dev/null +++ b/content/viewer/net/xz.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XZ Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von XZ in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "XZ Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von XZ-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der XZ-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie XZ in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei XZ mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei XZ im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei XZ ein + string filePath = "input.xz"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei XZ mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "XZ" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xz.en.md b/content/viewer/net/xz.en.md new file mode 100644 index 00000000..48223ebf --- /dev/null +++ b/content/viewer/net/xz.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XZ Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display XZ in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "XZ file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display XZ file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render XZ file in C#" + content: | + With GroupDocs.Viewer you can render XZ to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the XZ file with full path. + 3. Set options to render XZ file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input XZ file + string filePath = "input.xz"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render XZ file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "XZ" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xz.es.md b/content/viewer/net/xz.es.md new file mode 100644 index 00000000..8368e556 --- /dev/null +++ b/content/viewer/net/xz.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XZ API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar XZ en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "XZ visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos XZ en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo XZ en C#" + content: | + Con GroupDocs.Viewer puede renderizar XZ a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo XZ con la ruta completa. + 3. Configure opciones para representar el archivo XZ en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada XZ + string filePath = "input.xz"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo XZ a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "XZ" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xz.fa.md b/content/viewer/net/xz.fa.md new file mode 100644 index 00000000..84a53522 --- /dev/null +++ b/content/viewer/net/xz.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XZ بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش XZ در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل XZ برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل XZ در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل XZ در C#" + content: | + با GroupDocs.Viewer می‌توانید XZ را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل XZ را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل XZ در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی XZ را تنظیم کنید + string filePath = "input.xz"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل XZ را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "XZ" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xz.fr.md b/content/viewer/net/xz.fr.md new file mode 100644 index 00000000..2f096a29 --- /dev/null +++ b/content/viewer/net/xz.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET XZ - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher XZ dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "XZ visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier XZ dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier XZ dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer XZ au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier XZ avec le chemin complet. + 3. Définissez les options pour restituer le fichier XZ au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée XZ + string filePath = "input.xz"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier XZ au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "XZ" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xz.id.md b/content/viewer/net/xz.id.md new file mode 100644 index 00000000..a0ed705b --- /dev/null +++ b/content/viewer/net/xz.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XZ Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan XZ di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "XZ penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file XZ dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file XZ di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender XZ ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file XZ dengan path lengkap. + 3. Tetapkan opsi untuk merender file XZ ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan XZ + string filePath = "input.xz"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file XZ ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "XZ" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xz.it.md b/content/viewer/net/xz.it.md new file mode 100644 index 00000000..f803085a --- /dev/null +++ b/content/viewer/net/xz.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET XZ: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare XZ in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file XZ per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file XZ in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file XZ in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di XZ in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file XZ con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file XZ nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input XZ + string filePath = "input.xz"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file XZ in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "XZ" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xz.ja.md b/content/viewer/net/xz.ja.md new file mode 100644 index 00000000..af19d9f3 --- /dev/null +++ b/content/viewer/net/xz.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XZ ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで XZ を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の XZ ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで XZ ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で XZ ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で XZ を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、XZ ファイルをフルパスでロードします。 + 3. XZ ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 XZ ファイルを設定する + string filePath = "input.xz"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた XZ ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "XZ" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xz.ko.md b/content/viewer/net/xz.ko.md new file mode 100644 index 00000000..acfc2754 --- /dev/null +++ b/content/viewer/net/xz.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XZ 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 XZ을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 XZ 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 XZ 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 XZ 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 XZ을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 XZ 파일을 로드합니다. + 3. XZ 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 XZ 파일 설정 + string filePath = "input.xz"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 XZ 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "XZ" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xz.pt.md b/content/viewer/net/xz.pt.md new file mode 100644 index 00000000..de9eea49 --- /dev/null +++ b/content/viewer/net/xz.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XZ API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir XZ em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos XZ para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos XZ em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo XZ em C#" + content: | + Com GroupDocs.Viewer você pode renderizar XZ para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo XZ com caminho completo. + 3. Defina opções para renderizar o arquivo XZ em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada XZ + string filePath = "input.xz"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo XZ em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "XZ" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xz.ru.md b/content/viewer/net/xz.ru.md new file mode 100644 index 00000000..88c35d8f --- /dev/null +++ b/content/viewer/net/xz.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XZ API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения XZ в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "XZ средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла XZ в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла XZ в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать XZ в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл XZ с полным путем. + 3. Установите параметры для преобразования файла XZ в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл XZ + string filePath = "input.xz"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл XZ в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "XZ" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xz.th.md b/content/viewer/net/xz.th.md new file mode 100644 index 00000000..1c32980b --- /dev/null +++ b/content/viewer/net/xz.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XZ Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง XZ ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ XZ สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ XZ ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ XZ ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล XZ เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ XZ ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ XZ เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต XZ + string filePath = "input.xz"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ XZ เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "XZ" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xz.uk.md b/content/viewer/net/xz.uk.md new file mode 100644 index 00000000..9189321c --- /dev/null +++ b/content/viewer/net/xz.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XZ Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення XZ у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів XZ для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу XZ у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу XZ у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити XZ у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл XZ із повним шляхом. + 3. Встановіть параметри для перетворення файлу XZ у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл XZ + string filePath = "input.xz"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл XZ у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "XZ" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xz.vi.md b/content/viewer/net/xz.vi.md new file mode 100644 index 00000000..2766a7bb --- /dev/null +++ b/content/viewer/net/xz.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET XZ - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị XZ trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp XZ dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp XZ trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp XZ trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị XZ thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp XZ với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp XZ thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp XZ đầu vào + string filePath = "input.xz"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp XZ thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "XZ" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/xz.zh.md b/content/viewer/net/xz.zh.md new file mode 100644 index 00000000..5922b31e --- /dev/null +++ b/content/viewer/net/xz.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET XZ Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 XZ。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 XZ 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 XZ 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 XZ 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 XZ 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 XZ 文件。 + 3. 设置选项以将 XZ 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 XZ 文件 + string filePath = "input.xz"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 XZ 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "XZ" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/yaml.de.md b/content/viewer/net/yaml.de.md new file mode 100644 index 00000000..1a8bb9fe --- /dev/null +++ b/content/viewer/net/yaml.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET YAML Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von YAML in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "YAML Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von YAML-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der YAML-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie YAML in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei YAML mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei YAML im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei YAML ein + string filePath = "input.yaml"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei YAML mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "YAML" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/yaml.en.md b/content/viewer/net/yaml.en.md new file mode 100644 index 00000000..86d9406d --- /dev/null +++ b/content/viewer/net/yaml.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET YAML Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display YAML in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "YAML file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display YAML file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render YAML file in C#" + content: | + With GroupDocs.Viewer you can render YAML to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the YAML file with full path. + 3. Set options to render YAML file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input YAML file + string filePath = "input.yaml"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render YAML file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "YAML" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/yaml.es.md b/content/viewer/net/yaml.es.md new file mode 100644 index 00000000..6231a425 --- /dev/null +++ b/content/viewer/net/yaml.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET YAML API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar YAML en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "YAML visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos YAML en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo YAML en C#" + content: | + Con GroupDocs.Viewer puede renderizar YAML a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo YAML con la ruta completa. + 3. Configure opciones para representar el archivo YAML en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada YAML + string filePath = "input.yaml"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo YAML a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "YAML" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/yaml.fa.md b/content/viewer/net/yaml.fa.md new file mode 100644 index 00000000..4f6bf03f --- /dev/null +++ b/content/viewer/net/yaml.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET YAML بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش YAML در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل YAML برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل YAML در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل YAML در C#" + content: | + با GroupDocs.Viewer می‌توانید YAML را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل YAML را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل YAML در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی YAML را تنظیم کنید + string filePath = "input.yaml"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل YAML را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "YAML" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/yaml.fr.md b/content/viewer/net/yaml.fr.md new file mode 100644 index 00000000..c2b721ad --- /dev/null +++ b/content/viewer/net/yaml.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET YAML - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher YAML dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "YAML visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier YAML dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier YAML dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer YAML au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier YAML avec le chemin complet. + 3. Définissez les options pour restituer le fichier YAML au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée YAML + string filePath = "input.yaml"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier YAML au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "YAML" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/yaml.id.md b/content/viewer/net/yaml.id.md new file mode 100644 index 00000000..cf381d71 --- /dev/null +++ b/content/viewer/net/yaml.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET YAML Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan YAML di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "YAML penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file YAML dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file YAML di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender YAML ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file YAML dengan path lengkap. + 3. Tetapkan opsi untuk merender file YAML ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan YAML + string filePath = "input.yaml"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file YAML ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "YAML" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/yaml.it.md b/content/viewer/net/yaml.it.md new file mode 100644 index 00000000..eb6a36ea --- /dev/null +++ b/content/viewer/net/yaml.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET YAML: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare YAML in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file YAML per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file YAML in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file YAML in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di YAML in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file YAML con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file YAML nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input YAML + string filePath = "input.yaml"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file YAML in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "YAML" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/yaml.ja.md b/content/viewer/net/yaml.ja.md new file mode 100644 index 00000000..4a8b71fe --- /dev/null +++ b/content/viewer/net/yaml.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET YAML ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで YAML を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の YAML ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで YAML ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で YAML ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で YAML を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、YAML ファイルをフルパスでロードします。 + 3. YAML ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 YAML ファイルを設定する + string filePath = "input.yaml"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた YAML ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "YAML" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/yaml.ko.md b/content/viewer/net/yaml.ko.md new file mode 100644 index 00000000..504c683f --- /dev/null +++ b/content/viewer/net/yaml.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET YAML 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 YAML을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 YAML 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 YAML 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 YAML 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 YAML을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 YAML 파일을 로드합니다. + 3. YAML 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 YAML 파일 설정 + string filePath = "input.yaml"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 YAML 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "YAML" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/yaml.pt.md b/content/viewer/net/yaml.pt.md new file mode 100644 index 00000000..cac99d54 --- /dev/null +++ b/content/viewer/net/yaml.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET YAML API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir YAML em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos YAML para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos YAML em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo YAML em C#" + content: | + Com GroupDocs.Viewer você pode renderizar YAML para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo YAML com caminho completo. + 3. Defina opções para renderizar o arquivo YAML em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada YAML + string filePath = "input.yaml"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo YAML em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "YAML" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/yaml.ru.md b/content/viewer/net/yaml.ru.md new file mode 100644 index 00000000..5c190aa5 --- /dev/null +++ b/content/viewer/net/yaml.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET YAML API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения YAML в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "YAML средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла YAML в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла YAML в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать YAML в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл YAML с полным путем. + 3. Установите параметры для преобразования файла YAML в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл YAML + string filePath = "input.yaml"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл YAML в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "YAML" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/yaml.th.md b/content/viewer/net/yaml.th.md new file mode 100644 index 00000000..6f25c320 --- /dev/null +++ b/content/viewer/net/yaml.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET YAML Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง YAML ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ YAML สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ YAML ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ YAML ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล YAML เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ YAML ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ YAML เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต YAML + string filePath = "input.yaml"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ YAML เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "YAML" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/yaml.uk.md b/content/viewer/net/yaml.uk.md new file mode 100644 index 00000000..34f065c7 --- /dev/null +++ b/content/viewer/net/yaml.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET YAML Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення YAML у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів YAML для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу YAML у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу YAML у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити YAML у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл YAML із повним шляхом. + 3. Встановіть параметри для перетворення файлу YAML у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл YAML + string filePath = "input.yaml"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл YAML у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "YAML" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/yaml.vi.md b/content/viewer/net/yaml.vi.md new file mode 100644 index 00000000..dc8f074a --- /dev/null +++ b/content/viewer/net/yaml.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET YAML - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị YAML trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp YAML dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp YAML trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp YAML trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị YAML thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp YAML với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp YAML thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp YAML đầu vào + string filePath = "input.yaml"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp YAML thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "YAML" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/yaml.zh.md b/content/viewer/net/yaml.zh.md new file mode 100644 index 00000000..a1fe04ee --- /dev/null +++ b/content/viewer/net/yaml.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET YAML Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 YAML。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 YAML 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 YAML 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 YAML 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 YAML 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 YAML 文件。 + 3. 设置选项以将 YAML 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 YAML 文件 + string filePath = "input.yaml"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 YAML 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "YAML" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/zip.de.md b/content/viewer/net/zip.de.md new file mode 100644 index 00000000..705d347d --- /dev/null +++ b/content/viewer/net/zip.de.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:50 +draft: false +lang: de +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ZIP Viewer-API – Lesen, Anzeigen, Rendern in C# VB.NET" +head_description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von ZIP in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen." + +############################# Header ############################ +title: "ZIP Dateibetrachter für C# .NET-Anwendungen" +description: ".NET-Dokument-Viewer-API zum Lesen, Rendern und Anzeigen von ZIP-Dateien in allen Arten von C#-, ASP.NET-, VB.NET- und .NET Core-Anwendungen. Zeigen Sie die gerenderten Dateien mit echter Formatierung und echtem Layout in HTML5, PDF oder als Bild an, indem Sie ein paar Codezeilen verwenden." +subtitle: "Lösung zum Rendern von Dokumenten" + +header_actions: + enable: true + items: + # loop + - title: "Kostenloser Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Über GroupDocs.Viewer für die .NET-API" + link: "/viewer/net/" + link_title: "Erfahren Sie mehr" + picture: "about_viewer.svg" # 480 X 400 + content: | + Beginnen Sie mit der Anzeige von über 190 gängigen Dokumentformaten in Ihren .NET-Anwendungen mit GroupDocs.Viewer für .NET-APIs, indem Sie ein paar Codezeilen hinzufügen. Entwickler können problemlos PDF-, Textverarbeitungs-, Excel-Tabellen-, Präsentations-, Visio-, Projekt-, Outlook- und viele andere gängige Dokumentformate im HTML5-, Bild- oder PDF-Modus anzeigen. Die Dokumentwiedergabe ist schnell, identisch mit der Originalquelldatei und erfordert keine Installation zusätzlicher Software oder anderer externer Bibliotheken. + + + +############################# Steps ############################ +steps: + enable: true + title: "Schritte zum Rendern der ZIP-Datei in C#" + content: | + Mit GroupDocs.Viewer können Sie ZIP in wenigen Schritten in HTML, JPEG, PNG oder PDF rendern. + + 1. Installieren Sie GroupDocs.Viewer für .NET mit Ihrem bevorzugten Paketmanager. + 2. Erstellen Sie eine Instanz der Viewer-Klasse und laden Sie die Datei ZIP mit dem vollständigen Pfad. + 3. Legen Sie Optionen fest, um die Datei ZIP im HTML-, PNG-, JPEG- oder PDF-Format zu rendern. + 4. Rendern Sie die Datei und überprüfen Sie die Ausgabe im aktuellen Verzeichnis. + + code: + platform: "net" + copy_title: "Kopieren" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "Klicken Sie zum Kopieren" + copy_done: "kopiert" + links: + # loop + - title: "Mehr Beispiele" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Richten Sie die Eingabedatei ZIP ein + string filePath = "input.zip"; + + // Instanziieren Sie GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Ansichtsoptionen festlegen + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendern Sie die Datei ZIP mit eingebetteten Ressourcen in HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + items: + # loop + - title: "Nuget-Download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Lizenzierung" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendern Sie andere Dateiformate mit C#" + exclude: "ZIP" + description: "Multiformat-Dokument- und Bild-Viewer-API für .NET. Sehen Sie sich unten einige der beliebtesten Dateiformate ohne externe Viewer an." + items: + # format loop 1 + - name: "Rendern Sie DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR rendern" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX rendern" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendern Sie XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG rendern" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML rendern" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD rendern" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "AI rendern" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC rendern" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT rendern" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF rendern" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF rendern" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG rendern" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML rendern" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF rendern" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG rendern" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendern Sie PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendern Sie EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF rendern" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT rendern" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV rendern" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/zip.en.md b/content/viewer/net/zip.en.md new file mode 100644 index 00000000..970c5fc2 --- /dev/null +++ b/content/viewer/net/zip.en.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:49 +draft: false +lang: en +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ZIP Viewer API - read, view, render in C# VB.NET" +head_description: ".NET document viewer API to read, render and display ZIP in any type of C#, ASP.NET, VB.NET & .NET Core applications." + +############################# Header ############################ +title: "ZIP file viewer for C# .NET applications" +description: ".NET document viewer API to read, render and display ZIP file in any type of C#, ASP.NET, VB.NET & .NET Core applications. View the rendered files with true formatting & layout in HTML5, PDF or as an image using a few lines of the code." +subtitle: "Document rendering solution" + +header_actions: + enable: true + items: + # loop + - title: "Free Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "About GroupDocs.Viewer for .NET API" + link: "/viewer/net/" + link_title: "Learn more" + picture: "about_viewer.svg" # 480 X 400 + content: | + Start viewing 190+ popular document formats in your .NET applications using GroupDocs.Viewer for .NET APIs by adding a few lines of code. Developers can easily display PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook and many other popular document formats in HTML5, image or PDF modes. The document rendering is fast, identical to the original source file, and it does not require installing additional software or any other external libraries. + + + +############################# Steps ############################ +steps: + enable: true + title: "Steps to render ZIP file in C#" + content: | + With GroupDocs.Viewer you can render ZIP to HTML, JPEG, PNG or PDF in a few steps. + + 1. Install GroupDocs.Viewer for .NET using your favorite package manager. + 2. Create an instance of Viewer class and load the ZIP file with full path. + 3. Set options to render ZIP file into HTML, PNG, JPEG or PDF format. + 4. Render file and check output in the current directory. + + code: + platform: "net" + copy_title: "Copy" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "click to copy" + copy_done: "copied" + links: + # loop + - title: "More examples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Set up input ZIP file + string filePath = "input.zip"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Set view options + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render ZIP file to HTML with embedded resources + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + items: + # loop + - title: "Nuget download" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licensing" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render other file formats using C#" + exclude: "ZIP" + description: "Multi-format documents and images viewer API for .NET. View some of the popular file formats below without any external viewers." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/zip.es.md b/content/viewer/net/zip.es.md new file mode 100644 index 00000000..1deae794 --- /dev/null +++ b/content/viewer/net/zip.es.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:52 +draft: false +lang: es +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ZIP API de visor: leer, ver y representar en C# VB.NET" +head_description: "API de visor de documentos .NET para leer, representar y mostrar ZIP en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core." + +############################# Header ############################ +title: "ZIP visor de archivos para aplicaciones C# .NET" +description: "API de visor de documentos .NET para leer, representar y mostrar archivos ZIP en cualquier tipo de aplicaciones C#, ASP.NET, VB.NET y .NET Core. Vea los archivos renderizados con formato y diseño reales en HTML5, PDF o como una imagen usando unas pocas líneas de código." +subtitle: "Solución de renderizado de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Descarga gratuita de Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Acerca de GroupDocs.Viewer para la API .NET" + link: "/viewer/net/" + link_title: "Aprende más" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comience a ver más de 190 formatos de documentos populares en sus aplicaciones .NET usando GroupDocs.Viewer para API .NET agregando algunas líneas de código. Los desarrolladores pueden mostrar fácilmente PDF, procesamiento de textos, hojas de cálculo de Excel, presentaciones, Visio, proyectos, Outlook y muchos otros formatos de documentos populares en modos HTML5, imagen o PDF. La representación del documento es rápida, idéntica al archivo fuente original y no requiere la instalación de software adicional ni ninguna otra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Pasos para renderizar el archivo ZIP en C#" + content: | + Con GroupDocs.Viewer puede renderizar ZIP a HTML, JPEG, PNG o PDF en unos pocos pasos. + + 1. Instale GroupDocs.Viewer para .NET usando su administrador de paquetes favorito. + 2. Cree una instancia de la clase Viewer y cargue el archivo ZIP con la ruta completa. + 3. Configure opciones para representar el archivo ZIP en formato HTML, PNG, JPEG o PDF. + 4. Renderice el archivo y verifique la salida en el directorio actual. + + code: + platform: "net" + copy_title: "Copiar" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "haga clic para copiar" + copy_done: "copiado" + links: + # loop + - title: "Más ejemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentación" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar el archivo de entrada ZIP + string filePath = "input.zip"; + + // Crear una instancia de GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Establecer opciones de visualización + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderice el archivo ZIP a HTML con recursos integrados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + items: + # loop + - title: "descarga nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licencia" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderice otros formatos de archivo usando C#" + exclude: "ZIP" + description: "API de visor de imágenes y documentos multiformato para .NET. Vea algunos de los formatos de archivo populares a continuación sin visores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar texto" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Representar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/zip.fa.md b/content/viewer/net/zip.fa.md new file mode 100644 index 00000000..3ecbc0bb --- /dev/null +++ b/content/viewer/net/zip.fa.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:53 +draft: false +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ZIP بیننده API - خواندن، مشاهده، رندر در C# VB.NET" +head_description: "API نمایشگر اسناد NET برای خواندن، رندر و نمایش ZIP در هر نوع برنامه‌های C#، ASP.NET، VB.NET و NET Core." + +############################# Header ############################ +title: "نمایشگر فایل ZIP برای برنامه های C# .NET" +description: ".NET document viewer API برای خواندن، رندر و نمایش فایل ZIP در هر نوع برنامه های C#، ASP.NET، VB.NET و NET Core. فایل های رندر شده را با قالب بندی و چیدمان واقعی در HTML5، PDF یا به صورت تصویر با استفاده از چند خط کد مشاهده کنید." +subtitle: "راه حل ارائه سند" + +header_actions: + enable: true + items: + # loop + - title: "دانلود رایگان Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "درباره GroupDocs.Viewer برای NET API" + link: "/viewer/net/" + link_title: "بیشتر بدانید" + picture: "about_viewer.svg" # 480 X 400 + content: | + با افزودن چند خط کد، با استفاده از GroupDocs.Viewer برای API های NET، بیش از 190 قالب سند محبوب را در برنامه های NET خود مشاهده کنید. توسعه دهندگان به راحتی می توانند PDF، Word Processing، Excel Spreadsheet، Presentation، Visio، Project، Outlook و بسیاری دیگر از فرمت های سند محبوب را در حالت های HTML5، تصویر یا PDF نمایش دهند. رندر سند سریع، مشابه فایل منبع اصلی است و نیازی به نصب نرم افزار اضافی یا کتابخانه های خارجی دیگر ندارد. + + + +############################# Steps ############################ +steps: + enable: true + title: "مراحل ارائه فایل ZIP در C#" + content: | + با GroupDocs.Viewer می‌توانید ZIP را در چند مرحله به HTML، JPEG، PNG یا PDF تبدیل کنید. + + 1. با استفاده از مدیر بسته مورد علاقه خود، GroupDocs.Viewer را برای دات نت نصب کنید. + 2. یک نمونه از کلاس Viewer ایجاد کنید و فایل ZIP را با مسیر کامل بارگذاری کنید. + 3. گزینه هایی را برای رندر کردن فایل ZIP در قالب HTML، PNG، JPEG یا PDF تنظیم کنید. + 4. فایل را رندر کنید و خروجی را در دایرکتوری فعلی بررسی کنید. + + code: + platform: "net" + copy_title: "کپی 🀄" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "برای کپی کلیک کنید" + copy_done: "کپی شده است" + links: + # loop + - title: "نمونه های بیشتر" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "مستندات" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // فایل ورودی ZIP را تنظیم کنید + string filePath = "input.zip"; + + // Instantiate GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // گزینه های مشاهده را تنظیم کنید + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // فایل ZIP را با منابع جاسازی شده به HTML ارائه دهید + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + items: + # loop + - title: "دانلود Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "صدور مجوز" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "سایر قالب‌های فایل را با استفاده از C# رندر کنید" + exclude: "ZIP" + description: "API نمایشگر اسناد و تصاویر چند فرمتی برای دات نت. برخی از قالب‌های فایل محبوب را در زیر بدون هیچ بیننده خارجی مشاهده کنید." + items: + # format loop 1 + - name: "DOCX را رندر کنید" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR را رندر کنید" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "رندر PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "رندر XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "رندر DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML را رندر کنید" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "رندر PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "رندر هوش مصنوعی" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "DOC را رندر کنید" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "رندر TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "رندر DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF را رندر کنید" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "رندر SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML را رندر کنید" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "رندر PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "رندر JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "رندر PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML را رندر کنید" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF را رندر کنید" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT را رندر کنید" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV را رندر کنید" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/zip.fr.md b/content/viewer/net/zip.fr.md new file mode 100644 index 00000000..e5493921 --- /dev/null +++ b/content/viewer/net/zip.fr.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:54 +draft: false +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API de la visionneuse .NET ZIP - lire, afficher, rendre en C# VB.NET" +head_description: "API de visualisation de documents .NET pour lire, restituer et afficher ZIP dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core." + +############################# Header ############################ +title: "ZIP visionneuse de fichiers pour les applications C# .NET" +description: "API de visualisation de documents .NET pour lire, restituer et afficher le fichier ZIP dans tout type d'applications C#, ASP.NET, VB.NET et .NET Core. Affichez les fichiers rendus avec un véritable formatage et une mise en page en HTML5, PDF ou sous forme d'image en utilisant quelques lignes de code." +subtitle: "Solution de rendu de documents" + +header_actions: + enable: true + items: + # loop + - title: "Téléchargement gratuit de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "À propos de l'API GroupDocs.Viewer pour .NET" + link: "/viewer/net/" + link_title: "Apprendre encore plus" + picture: "about_viewer.svg" # 480 X 400 + content: | + Commencez à visualiser plus de 190 formats de documents populaires dans vos applications .NET à l'aide des API GroupDocs.Viewer pour .NET en ajoutant quelques lignes de code. Les développeurs peuvent facilement afficher PDF, traitement de texte, feuille de calcul Excel, présentation, Visio, projet, Outlook et de nombreux autres formats de documents populaires en modes HTML5, image ou PDF. Le rendu du document est rapide, identique au fichier source d'origine, et ne nécessite pas l'installation de logiciels supplémentaires ni d'autres bibliothèques externes. + + + +############################# Steps ############################ +steps: + enable: true + title: "Étapes pour restituer le fichier ZIP dans C#" + content: | + Avec GroupDocs.Viewer, vous pouvez restituer ZIP au format HTML, JPEG, PNG ou PDF en quelques étapes. + + 1. Installez GroupDocs.Viewer pour .NET à l'aide de votre gestionnaire de packages préféré. + 2. Créez une instance de la classe Viewer et chargez le fichier ZIP avec le chemin complet. + 3. Définissez les options pour restituer le fichier ZIP au format HTML, PNG, JPEG ou PDF. + 4. Rendu le fichier et vérifiez la sortie dans le répertoire actuel. + + code: + platform: "net" + copy_title: "Copie" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "cliquez pour copier" + copy_done: "copié" + links: + # loop + - title: "Plus d'exemples" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentation" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurer le fichier d'entrée ZIP + string filePath = "input.zip"; + + // Instancier GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Définir les options d'affichage + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Rendre le fichier ZIP au format HTML avec des ressources intégrées + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + items: + # loop + - title: "Téléchargement de Nugets" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licence" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Rendre d'autres formats de fichiers en utilisant C#" + exclude: "ZIP" + description: "API de visualisation de documents et d'images multiformats pour .NET. Affichez certains des formats de fichiers populaires ci-dessous sans aucun lecteur externe." + items: + # format loop 1 + - name: "Rendre DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Rendre le CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Rendu PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Rendu XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendu DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendre XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendu PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Rendu DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Rendu TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendu DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendu VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendu SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendre le HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Rendre le PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendu JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Rendu PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendre EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Rendu RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Rendu ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Rendu CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/zip.id.md b/content/viewer/net/zip.id.md new file mode 100644 index 00000000..819a6600 --- /dev/null +++ b/content/viewer/net/zip.id.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:56 +draft: false +lang: id +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ZIP Viewer API - baca, lihat, render dalam C# VB.NET" +head_description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan ZIP di semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "ZIP penampil file untuk aplikasi C# .NET" +description: "API penampil dokumen .NET untuk membaca, merender, dan menampilkan file ZIP dalam semua jenis aplikasi C#, ASP.NET, VB.NET & .NET Core. Lihat file yang dirender dengan format & tata letak sebenarnya dalam HTML5, PDF, atau sebagai gambar menggunakan beberapa baris kode." +subtitle: "Solusi rendering dokumen" + +header_actions: + enable: true + items: + # loop + - title: "Unduh Nuget gratis" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Tentang GroupDocs.Viewer untuk .NET API" + link: "/viewer/net/" + link_title: "Belajarlah lagi" + picture: "about_viewer.svg" # 480 X 400 + content: | + Mulai lihat 190+ format dokumen populer di aplikasi .NET Anda menggunakan GroupDocs.Viewer untuk .NET API dengan menambahkan beberapa baris kode. Pengembang dapat dengan mudah menampilkan PDF, Pemrosesan Kata, Excel Spreadsheet, Presentasi, Visio, Project, Outlook dan banyak format dokumen populer lainnya dalam mode HTML5, gambar atau PDF. Render dokumen cepat, identik dengan file sumber asli, dan tidak memerlukan instalasi perangkat lunak tambahan atau perpustakaan eksternal lainnya. + + + +############################# Steps ############################ +steps: + enable: true + title: "Langkah-langkah merender file ZIP di C#" + content: | + Dengan GroupDocs.Viewer Anda dapat merender ZIP ke HTML, JPEG, PNG, atau PDF dalam beberapa langkah. + + 1. Instal GroupDocs.Viewer untuk .NET menggunakan pengelola paket favorit Anda. + 2. Buat instance kelas Viewer dan muat file ZIP dengan path lengkap. + 3. Tetapkan opsi untuk merender file ZIP ke dalam format HTML, PNG, JPEG, atau PDF. + 4. Render file dan periksa output di direktori saat ini. + + code: + platform: "net" + copy_title: "Menyalin" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "klik untuk menyalin" + copy_done: "disalin" + links: + # loop + - title: "Lebih banyak contoh" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Dokumentasi" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Siapkan file masukan ZIP + string filePath = "input.zip"; + + // Buat instance GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Tetapkan opsi tampilan + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Render file ZIP ke HTML dengan sumber daya yang disematkan + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + items: + # loop + - title: "Unduhan nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Perizinan" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Render format file lain menggunakan C#" + exclude: "ZIP" + description: "Dokumen multi-format dan API penampil gambar untuk .NET. Lihat beberapa format file populer di bawah ini tanpa pemirsa eksternal." + items: + # format loop 1 + - name: "Render DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Render CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Render PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Render XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Render DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Render XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Render PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Render AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Render DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Render TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Render DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Render VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Render SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Render HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Render PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Render JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Render PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Render EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Render RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Render ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Render CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/zip.it.md b/content/viewer/net/zip.it.md new file mode 100644 index 00000000..f58962c2 --- /dev/null +++ b/content/viewer/net/zip.it.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:57 +draft: false +lang: it +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API visualizzatore .NET ZIP: lettura, visualizzazione, rendering in C# VB.NET" +head_description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare ZIP in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizzatore di file ZIP per applicazioni C# .NET" +description: "API per visualizzatore di documenti .NET per leggere, eseguire il rendering e visualizzare file ZIP in qualsiasi tipo di applicazioni C#, ASP.NET, VB.NET e .NET Core. Visualizza i file renderizzati con formattazione e layout reali in HTML5, PDF o come immagine utilizzando poche righe di codice." +subtitle: "Soluzione per il rendering dei documenti" + +header_actions: + enable: true + items: + # loop + - title: "Scarica gratis Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Informazioni su GroupDocs.Viewer per l'API .NET" + link: "/viewer/net/" + link_title: "Saperne di più" + picture: "about_viewer.svg" # 480 X 400 + content: | + Inizia a visualizzare oltre 190 formati di documenti popolari nelle tue applicazioni .NET utilizzando GroupDocs.Viewer per le API .NET aggiungendo poche righe di codice. Gli sviluppatori possono visualizzare facilmente PDF, elaborazione testi, fogli di calcolo Excel, presentazioni, Visio, Project, Outlook e molti altri formati di documenti popolari in modalità HTML5, immagine o PDF. Il rendering del documento è veloce, identico al file sorgente originale e non richiede l'installazione di software aggiuntivo o altre librerie esterne. + + + +############################# Steps ############################ +steps: + enable: true + title: "Passaggi per eseguire il rendering del file ZIP in C#" + content: | + Con GroupDocs.Viewer puoi eseguire il rendering di ZIP in HTML, JPEG, PNG o PDF in pochi passaggi. + + 1. Installa GroupDocs.Viewer for .NET utilizzando il tuo gestore di pacchetti preferito. + 2. Crea un'istanza della classe Viewer e carica il file ZIP con il percorso completo. + 3. Imposta le opzioni per eseguire il rendering del file ZIP nel formato HTML, PNG, JPEG o PDF. + 4. Renderizza il file e controlla l'output nella directory corrente. + + code: + platform: "net" + copy_title: "copia" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "fare clic per copiare" + copy_done: "copiato" + links: + # loop + - title: "Altri esempi" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentazione" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configura il file di input ZIP + string filePath = "input.zip"; + + // Crea un'istanza di GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Imposta le opzioni di visualizzazione + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Visualizza il file ZIP in HTML con risorse incorporate + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronti per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + items: + # loop + - title: "Scarica Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenza" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Esegui il rendering di altri formati di file utilizzando C#" + exclude: "ZIP" + description: "API per visualizzatori di immagini e documenti multiformato per .NET. Visualizza alcuni dei formati di file più diffusi di seguito senza visualizzatori esterni." + items: + # format loop 1 + - name: "Renderizza DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Eseguire il rendering del CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizza PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizza XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Rendering DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Rendering XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Rendering PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Rendering dell'intelligenza artificiale" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizza DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizza TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Rendering DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Rendering VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Rendering SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Rendering HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Visualizza PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Rendering JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Visualizza PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Rendering EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizza RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizza ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Visualizza CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/zip.ja.md b/content/viewer/net/zip.ja.md new file mode 100644 index 00000000..128b26f1 --- /dev/null +++ b/content/viewer/net/zip.ja.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:58 +draft: false +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ZIP ビューア API - C# VB.NET での読み取り、表示、レンダリング" +head_description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで ZIP を読み取り、レンダリング、表示する .NET ドキュメント ビューア API。" + +############################# Header ############################ +title: "C# .NET アプリケーション用の ZIP ファイル ビューア" +description: "あらゆる種類の C#、ASP.NET、VB.NET、.NET Core アプリケーションで ZIP ファイルを読み取り、レンダリング、表示するための .NET ドキュメント ビューア API。数行のコードを使用して、HTML5、PDF、または画像として、正確な書式設定とレイアウトでレンダリングされたファイルを表示します。" +subtitle: "ドキュメントレンダリングソリューション" + +header_actions: + enable: true + items: + # loop + - title: "Nuget の無料ダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API 用の GroupDocs.Viewer について" + link: "/viewer/net/" + link_title: "もっと詳しく知る" + picture: "about_viewer.svg" # 480 X 400 + content: | + 数行のコードを追加するだけで、GroupDocs.Viewer for .NET API を使用して .NET アプリケーションで 190 以上の一般的なドキュメント形式の表示を開始できます。開発者は、PDF、ワード プロセッシング、Excel スプレッドシート、プレゼンテーション、Visio、プロジェクト、Outlook、その他多くの一般的なドキュメント形式を HTML5、画像、または PDF モードで簡単に表示できます。ドキュメントのレンダリングは高速で、元のソース ファイルと同一であり、追加のソフトウェアやその他の外部ライブラリをインストールする必要はありません。 + + + +############################# Steps ############################ +steps: + enable: true + title: "C# で ZIP ファイルをレンダリングする手順" + content: | + GroupDocs.Viewer を使用すると、いくつかの手順で ZIP を HTML、JPEG、PNG、または PDF にレンダリングできます。 + + 1. 好みのパッケージ マネージャーを使用して、GroupDocs.Viewer for .NET をインストールします。 + 2. Viewer クラスのインスタンスを作成し、ZIP ファイルをフルパスでロードします。 + 3. ZIP ファイルを HTML、PNG、JPEG、または PDF 形式でレンダリングするオプションを設定します。 + 4. ファイルをレンダリングし、現在のディレクトリで出力を確認します。 + + code: + platform: "net" + copy_title: "コピー" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "クリックしてコピーします" + copy_done: "コピーされました" + links: + # loop + - title: "他の例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "ドキュメンテーション" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 入力 ZIP ファイルを設定する + string filePath = "input.zip"; + + // GroupDocs.Viewer をインスタンス化する + using (Viewer viewer = new Viewer(filePath)) + { + // 表示オプションを設定する + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // リソースが埋め込まれた ZIP ファイルを HTML にレンダリングします + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + items: + # loop + - title: "ナゲットのダウンロード" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "ライセンス" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C# を使用して他のファイル形式をレンダリングする" + exclude: "ZIP" + description: ".NET 用のマルチフォーマットのドキュメントおよび画像ビューア API。外部ビューアを使用せずに、以下の一般的なファイル形式の一部を表示します。" + items: + # format loop 1 + - name: "DOCXのレンダリング" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "CDR をレンダリングする" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTXのレンダリング" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX をレンダリングする" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG をレンダリングする" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XMLのレンダリング" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD をレンダリングする" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "レンダリングAI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "ドキュメントのレンダリング" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXTをレンダリングする" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXFのレンダリング" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF をレンダリングする" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG のレンダリング" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTMLのレンダリング" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF をレンダリングする" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEGをレンダリングする" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG をレンダリング" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EMLをレンダリングする" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTFをレンダリングする" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT のレンダリング" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSVのレンダリング" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/zip.ko.md b/content/viewer/net/zip.ko.md new file mode 100644 index 00000000..a2f0e2d3 --- /dev/null +++ b/content/viewer/net/zip.ko.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:14:59 +draft: false +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ZIP 뷰어 API - C# VB.NET에서 읽기, 보기, 렌더링" +head_description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 ZIP을 읽고 렌더링하고 표시하는 .NET 문서 뷰어 API입니다." + +############################# Header ############################ +title: "C# .NET 애플리케이션용 ZIP 파일 뷰어" +description: "모든 유형의 C#, ASP.NET, VB.NET 및 .NET Core 애플리케이션에서 ZIP 파일을 읽고, 렌더링하고 표시하는 .NET 문서 뷰어 API입니다. HTML5, PDF 또는 몇 줄의 코드를 사용하여 이미지로 실제 형식 및 레이아웃으로 렌더링된 파일을 봅니다." +subtitle: "문서 렌더링 솔루션" + +header_actions: + enable: true + items: + # loop + - title: "무료 너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: ".NET API용 GroupDocs.Viewer 정보" + link: "/viewer/net/" + link_title: "더 알아보기" + picture: "about_viewer.svg" # 480 X 400 + content: | + 몇 줄의 코드를 추가하면 .NET용 GroupDocs.Viewer API를 사용하여 .NET 응용 프로그램에서 190개 이상의 인기 있는 문서 형식을 볼 수 있습니다. 개발자는 PDF, 워드 프로세싱, Excel 스프레드시트, 프리젠테이션, Visio, Project, Outlook 및 기타 널리 사용되는 문서 형식을 HTML5, 이미지 또는 PDF 모드로 쉽게 표시할 수 있습니다. 문서 렌더링은 빠르고 원본 소스 파일과 동일하며 추가 소프트웨어나 기타 외부 라이브러리를 설치할 필요가 없습니다. + + + +############################# Steps ############################ +steps: + enable: true + title: "C#에서 ZIP 파일을 렌더링하는 단계" + content: | + GroupDocs.Viewer를 사용하면 몇 단계만으로 ZIP을(를) HTML, JPEG, PNG 또는 PDF로 렌더링할 수 있습니다. + + 1. 선호하는 패키지 관리자를 사용하여 GroupDocs.Viewer for .NET을 설치하세요. + 2. Viewer 클래스의 인스턴스를 생성하고 전체 경로와 함께 ZIP 파일을 로드합니다. + 3. ZIP 파일을 HTML, PNG, JPEG 또는 PDF 형식으로 렌더링하는 옵션을 설정합니다. + 4. 파일을 렌더링하고 현재 디렉터리에서 출력을 확인합니다. + + code: + platform: "net" + copy_title: "복사" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "복사하려면 클릭하세요" + copy_done: "복사됨" + links: + # loop + - title: "더 많은 예시" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "선적 서류 비치" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 입력 ZIP 파일 설정 + string filePath = "input.zip"; + + // GroupDocs.Viewer 인스턴스화 + using (Viewer viewer = new Viewer(filePath)) + { + // 보기 옵션 설정 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 포함된 리소스가 있는 HTML로 ZIP 파일을 렌더링합니다. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + items: + # loop + - title: "너겟 다운로드" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "라이선스" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "C#을 사용하여 다른 파일 형식을 렌더링합니다." + exclude: "ZIP" + description: ".NET용 다중 형식 문서 및 이미지 뷰어 API. 외부 뷰어 없이 아래의 인기 있는 파일 형식 중 일부를 확인하세요." + items: + # format loop 1 + - name: "DOCX 렌더링" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "렌더 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "PPTX 렌더링" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "XLSX 렌더링" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "DWG 렌더링" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "XML 렌더링" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "PSD 렌더링" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "렌더 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "렌더링 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "TXT 렌더링" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "DXF 렌더링" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "VCF 렌더링" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "SVG 렌더링" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "HTML 렌더링" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "PDF 렌더링" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "JPEG 렌더링" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG 렌더링" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "EML 렌더링" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "RTF 렌더링" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "ODT 렌더링" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "CSV 렌더링" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/zip.pt.md b/content/viewer/net/zip.pt.md new file mode 100644 index 00000000..010d99ff --- /dev/null +++ b/content/viewer/net/zip.pt.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:00 +draft: false +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ZIP API Viewer - ler, visualizar, renderizar em C# VB.NET" +head_description: "API do visualizador de documentos .NET para ler, renderizar e exibir ZIP em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core." + +############################# Header ############################ +title: "Visualizador de arquivos ZIP para aplicativos C# .NET" +description: "API do visualizador de documentos .NET para ler, renderizar e exibir arquivos ZIP em qualquer tipo de aplicativos C#, ASP.NET, VB.NET e .NET Core. Visualize os arquivos renderizados com formatação e layout verdadeiros em HTML5, PDF ou como imagem usando algumas linhas de código." +subtitle: "Solução de renderização de documentos" + +header_actions: + enable: true + items: + # loop + - title: "Download grátis do Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Sobre GroupDocs.Viewer para API .NET" + link: "/viewer/net/" + link_title: "Saber mais" + picture: "about_viewer.svg" # 480 X 400 + content: | + Comece a visualizar mais de 190 formatos de documentos populares em seus aplicativos .NET usando GroupDocs.Viewer para APIs .NET adicionando algumas linhas de código. Os desenvolvedores podem exibir facilmente PDF, processamento de texto, planilha do Excel, apresentação, Visio, Projeto, Outlook e muitos outros formatos de documentos populares nos modos HTML5, imagem ou PDF. A renderização do documento é rápida, idêntica ao arquivo de origem original e não requer instalação de software adicional ou qualquer outra biblioteca externa. + + + +############################# Steps ############################ +steps: + enable: true + title: "Etapas para renderizar o arquivo ZIP em C#" + content: | + Com GroupDocs.Viewer você pode renderizar ZIP para HTML, JPEG, PNG ou PDF em algumas etapas. + + 1. Instale GroupDocs.Viewer for .NET usando seu gerenciador de pacotes favorito. + 2. Crie uma instância da classe Viewer e carregue o arquivo ZIP com caminho completo. + 3. Defina opções para renderizar o arquivo ZIP em formato HTML, PNG, JPEG ou PDF. + 4. Renderize o arquivo e verifique a saída no diretório atual. + + code: + platform: "net" + copy_title: "cópia de" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "clique para copiar" + copy_done: "copiado" + links: + # loop + - title: "Mais exemplos" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Documentação" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Configurar arquivo de entrada ZIP + string filePath = "input.zip"; + + // Instanciar GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Definir opções de visualização + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Renderize o arquivo ZIP em HTML com recursos incorporados + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + items: + # loop + - title: "Baixar pepita" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Licenciamento" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Renderize outros formatos de arquivo usando C#" + exclude: "ZIP" + description: "API de visualização de documentos e imagens multiformato para .NET. Veja alguns dos formatos de arquivo populares abaixo, sem visualizadores externos." + items: + # format loop 1 + - name: "Renderizar DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Renderizar CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Renderizar PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Renderizar XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Renderizar DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Renderizar XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Renderizar PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Renderizar AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Renderizar DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Renderizar TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Renderizar DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Renderizar VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Renderizar SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Renderizar HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Renderizar PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Renderizar JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Renderizar PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Renderizar EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Renderizar RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Renderizar ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Renderizar CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/zip.ru.md b/content/viewer/net/zip.ru.md new file mode 100644 index 00000000..842073ab --- /dev/null +++ b/content/viewer/net/zip.ru.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:01 +draft: false +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ZIP API Viewer — чтение, просмотр, рендеринг на C# VB.NET" +head_description: "API средства просмотра документов .NET для чтения, рендеринга и отображения ZIP в любых типах приложений C#, ASP.NET, VB.NET и .NET Core." + +############################# Header ############################ +title: "ZIP средство просмотра файлов для приложений C# .NET" +description: "API средства просмотра документов .NET для чтения, рендеринга и отображения файла ZIP в любых типах приложений C#, ASP.NET, VB.NET и .NET Core. Просматривайте обработанные файлы с правильным форматированием и макетом в формате HTML5, PDF или в виде изображения, используя несколько строк кода." +subtitle: "Решение для рендеринга документов" + +header_actions: + enable: true + items: + # loop + - title: "Бесплатная загрузка Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "О GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Узнать больше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Начните просматривать более 190 популярных форматов документов в своих приложениях .NET с помощью GroupDocs.Viewer для API .NET, добавив несколько строк кода. Разработчики могут легко отображать PDF-файлы, текстовые редакторы, электронные таблицы Excel, презентации, Visio, Project, Outlook и многие другие популярные форматы документов в режимах HTML5, изображения или PDF. Рендеринг документа происходит быстро, идентично исходному файлу и не требует установки дополнительного программного обеспечения или каких-либо других внешних библиотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Действия по рендерингу файла ZIP в C#" + content: | + С помощью GroupDocs.Viewer вы можете преобразовать ZIP в HTML, JPEG, PNG или PDF за несколько шагов. + + 1. Установите GroupDocs.Viewer для .NET с помощью вашего любимого менеджера пакетов. + 2. Создайте экземпляр класса Viewer и загрузите файл ZIP с полным путем. + 3. Установите параметры для преобразования файла ZIP в формат HTML, PNG, JPEG или PDF. + 4. Отрисуйте файл и проверьте вывод в текущем каталоге. + + code: + platform: "net" + copy_title: "Копировать" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "нажмите, чтобы скопировать" + copy_done: "скопирован" + links: + # loop + - title: "Больше примеров" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документация" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Настройте входной файл ZIP + string filePath = "input.zip"; + + // Создать экземпляр GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Установить параметры просмотра + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Преобразовать файл ZIP в HTML со встроенными ресурсами. + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + items: + # loop + - title: "Скачать Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Лицензирование" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Рендеринг других форматов файлов с помощью C#" + exclude: "ZIP" + description: "API многоформатного просмотра документов и изображений для .NET. Просмотрите некоторые популярные форматы файлов ниже без использования внешних программ просмотра." + items: + # format loop 1 + - name: "Рендеринг DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендеринг CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендеринг PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендеринг DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Рендеринг XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендеринг PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендеринг AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Рендеринг DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендеринг TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендеринг DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендеринг VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Рендеринг SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Рендеринг HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендеринг PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендеринг JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "PNG рендеринг" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Рендеринг EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендеринг RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендеринг ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Рендеринг CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/zip.th.md b/content/viewer/net/zip.th.md new file mode 100644 index 00000000..a6b13819 --- /dev/null +++ b/content/viewer/net/zip.th.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:02 +draft: false +lang: th +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ZIP Viewer API - อ่าน ดู เรนเดอร์ใน C# VB.NET" +head_description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดง ZIP ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท" + +############################# Header ############################ +title: "โปรแกรมดูไฟล์ ZIP สำหรับแอปพลิเคชัน C# .NET" +description: "API โปรแกรมดูเอกสาร .NET เพื่ออ่าน เรนเดอร์ และแสดงไฟล์ ZIP ในแอปพลิเคชัน C#, ASP.NET, VB.NET และ .NET Core ทุกประเภท ดูไฟล์ที่เรนเดอร์ด้วยการจัดรูปแบบและเค้าโครงที่แท้จริงใน HTML5, PDF หรือเป็นรูปภาพโดยใช้โค้ดเพียงไม่กี่บรรทัด" +subtitle: "โซลูชันการแสดงผลเอกสาร" + +header_actions: + enable: true + items: + # loop + - title: "ดาวน์โหลดฟรี Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "เกี่ยวกับ GroupDocs.Viewer สำหรับ .NET API" + link: "/viewer/net/" + link_title: "เรียนรู้เพิ่มเติม" + picture: "about_viewer.svg" # 480 X 400 + content: | + เริ่มดูรูปแบบเอกสารยอดนิยมกว่า 190 รูปแบบในแอปพลิเคชัน .NET ของคุณโดยใช้ GroupDocs.Viewer สำหรับ .NET API โดยการเพิ่มโค้ดสองสามบรรทัด นักพัฒนาสามารถแสดง PDF, การประมวลผลคำ, สเปรดชีต Excel, การนำเสนอ, Visio, โครงการ, Outlook และรูปแบบเอกสารยอดนิยมอื่นๆ ในโหมด HTML5, รูปภาพ หรือ PDF ได้อย่างง่ายดาย การเรนเดอร์เอกสารรวดเร็ว เหมือนกับไฟล์ต้นฉบับ และไม่จำเป็นต้องติดตั้งซอฟต์แวร์เพิ่มเติมหรือไลบรารีภายนอกอื่นใด + + + +############################# Steps ############################ +steps: + enable: true + title: "ขั้นตอนในการแสดงผลไฟล์ ZIP ใน C#" + content: | + ด้วย GroupDocs.Viewer คุณสามารถแสดงผล ZIP เป็น HTML, JPEG, PNG หรือ PDF ได้ในไม่กี่ขั้นตอน + + 1. ติดตั้ง GroupDocs.Viewer สำหรับ .NET โดยใช้ตัวจัดการแพ็คเกจที่คุณชื่นชอบ + 2. สร้างอินสแตนซ์ของคลาส Viewer และโหลดไฟล์ ZIP ด้วยเส้นทางแบบเต็ม + 3. ตั้งค่าตัวเลือกเพื่อแสดงไฟล์ ZIP เป็นรูปแบบ HTML, PNG, JPEG หรือ PDF + 4. เรนเดอร์ไฟล์และตรวจสอบเอาต์พุตในไดเร็กทอรีปัจจุบัน + + code: + platform: "net" + copy_title: "สำเนา" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "คลิกเพื่อคัดลอก" + copy_done: "คัดลอก" + links: + # loop + - title: "ตัวอย่างเพิ่มเติม" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "เอกสารประกอบ" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // ตั้งค่าไฟล์อินพุต ZIP + string filePath = "input.zip"; + + // สร้างอินสแตนซ์ GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // ตั้งค่าตัวเลือกมุมมอง + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // เรนเดอร์ไฟล์ ZIP เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + items: + # loop + - title: "ดาวน์โหลด" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "การออกใบอนุญาต" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "เรนเดอร์ไฟล์รูปแบบอื่นโดยใช้ C#" + exclude: "ZIP" + description: "API โปรแกรมดูเอกสารและรูปภาพหลายรูปแบบสำหรับ .NET ดูรูปแบบไฟล์ยอดนิยมบางรูปแบบด้านล่างโดยไม่ต้องใช้โปรแกรมดูจากภายนอก" + items: + # format loop 1 + - name: "เรนเดอร์ DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "เรนเดอร์ CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "เรนเดอร์ PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "เรนเดอร์ XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "เรนเดอร์ DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "เรนเดอร์ XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "เรนเดอร์ PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "เรนเดอร์ AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "เรนเดอร์ DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "เรนเดอร์ TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "เรนเดอร์ DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "เรนเดอร์ VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "เรนเดอร์ SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "เรนเดอร์ HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "เรนเดอร์ PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "เรนเดอร์ JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "เรนเดอร์ PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "เรนเดอร์ EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "เรนเดอร์ RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "เรนเดอร์ ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "แสดงผล CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/zip.uk.md b/content/viewer/net/zip.uk.md new file mode 100644 index 00000000..3a5ec392 --- /dev/null +++ b/content/viewer/net/zip.uk.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:03 +draft: false +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ZIP Viewer API - читання, перегляд, рендеринг у C# VB.NET" +head_description: "API переглядача документів .NET для читання, візуалізації та відображення ZIP у будь-яких програмах C#, ASP.NET, VB.NET і .NET Core." + +############################# Header ############################ +title: "Переглядач файлів ZIP для програм C# .NET" +description: "API переглядача документів .NET для читання, візуалізації та відображення файлу ZIP у програмах C#, ASP.NET, VB.NET і .NET Core будь-якого типу. Переглядайте відтворені файли зі справжнім форматуванням і макетом у HTML5, PDF або як зображення за допомогою кількох рядків коду." +subtitle: "РІШЕННЯ ДЛЯ ПЕРЕГЛЯДУ ДОКУМЕНТІВ" + +header_actions: + enable: true + items: + # loop + - title: "Безкоштовне завантаження Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Про GroupDocs.Viewer для .NET API" + link: "/viewer/net/" + link_title: "Дізнатись більше" + picture: "about_viewer.svg" # 480 X 400 + content: | + Почніть переглядати понад 190 популярних форматів документів у своїх програмах .NET за допомогою API GroupDocs.Viewer для .NET, додавши кілька рядків коду. Розробники можуть легко відображати PDF, Word Processing, Excel Spreadsheet, Presentation, Visio, Project, Outlook та багато інших популярних форматів документів у режимах HTML5, зображень або PDF. Рендеринг документа відбувається швидко, ідентичний оригінальному вихідному файлу, і не вимагає встановлення додаткового програмного забезпечення чи будь-яких інших зовнішніх бібліотек. + + + +############################# Steps ############################ +steps: + enable: true + title: "Кроки для перегляду файлу ZIP у C#" + content: | + За допомогою GroupDocs.Viewer ви можете перетворити ZIP у HTML, JPEG, PNG або PDF за кілька кроків. + + 1. Установіть GroupDocs.Viewer для .NET за допомогою улюбленого менеджера пакетів. + 2. Створіть екземпляр класу Viewer і завантажте файл ZIP із повним шляхом. + 3. Встановіть параметри для перетворення файлу ZIP у форматі HTML, PNG, JPEG або PDF. + 4. Перетворити файл і переглянути результат у поточній директорії. + + code: + platform: "net" + copy_title: "Копіювати" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "натисніть, щоб скопіювати" + copy_done: "скопійовано" + links: + # loop + - title: "Більше прикладів" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Документація" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Налаштувати вхідний файл ZIP + string filePath = "input.zip"; + + // Створення екземпляра GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Налаштувати параметри перегляду + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Перетворіть файл ZIP у HTML із вбудованими ресурсами + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або ортимайте тимчасову ліцензию" + items: + # loop + - title: "Завантажити Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Ліцензування" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Перегляд інших форматів в додатках на C#" + exclude: "ZIP" + description: "Багатоформатний API перегляду документів і зображень для .NET. Переглядайте популярні формати файлів без встановлення додаткових програм." + items: + # format loop 1 + - name: "Рендер DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Рендер CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Рендер PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Рендер XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Рендер DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Відобразити XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Рендер PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Рендер AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Відобразити DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Рендерити TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Рендер DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Рендер VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Відтворити SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Відобразити HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Рендер PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Рендер JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Рендер PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Відобразити EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Рендер RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Рендер ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Відобразити CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/zip.vi.md b/content/viewer/net/zip.vi.md new file mode 100644 index 00000000..6fd6b22d --- /dev/null +++ b/content/viewer/net/zip.vi.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:04 +draft: false +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: "API trình xem .NET ZIP - đọc, xem, hiển thị trong C# VB.NET" +head_description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị ZIP trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core." + +############################# Header ############################ +title: "Trình xem tệp ZIP dành cho ứng dụng C# .NET" +description: "API trình xem tài liệu .NET để đọc, hiển thị và hiển thị tệp ZIP trong mọi loại ứng dụng C#, ASP.NET, VB.NET & .NET Core. Xem các tệp được hiển thị với định dạng và bố cục thực ở dạng HTML5, PDF hoặc dưới dạng hình ảnh bằng cách sử dụng một vài dòng mã." +subtitle: "Giải pháp kết xuất tài liệu" + +header_actions: + enable: true + items: + # loop + - title: "Tải xuống Nuget miễn phí" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "Giới thiệu về GroupDocs.Viewer cho .NET API" + link: "/viewer/net/" + link_title: "Tìm hiểu thêm" + picture: "about_viewer.svg" # 480 X 400 + content: | + Bắt đầu xem hơn 190 định dạng tài liệu phổ biến trong các ứng dụng .NET của bạn bằng GroupDocs.Viewer dành cho API .NET bằng cách thêm một vài dòng mã. Các nhà phát triển có thể dễ dàng hiển thị PDF, Word Xử lý, Bảng tính Excel, Bản trình bày, Visio, Project, Outlook và nhiều định dạng tài liệu phổ biến khác ở chế độ HTML5, hình ảnh hoặc PDF. Quá trình kết xuất tài liệu diễn ra nhanh chóng, giống hệt với tệp nguồn gốc và không yêu cầu cài đặt phần mềm bổ sung hoặc bất kỳ thư viện bên ngoài nào khác. + + + +############################# Steps ############################ +steps: + enable: true + title: "Các bước để hiển thị tệp ZIP trong C#" + content: | + Với GroupDocs.Viewer bạn có thể hiển thị ZIP thành HTML, JPEG, PNG hoặc PDF chỉ trong vài bước. + + 1. Cài đặt GroupDocs.Viewer for .NET bằng trình quản lý gói yêu thích của bạn. + 2. Tạo một phiên bản của lớp Viewer và tải tệp ZIP với đường dẫn đầy đủ. + 3. Đặt tùy chọn để hiển thị tệp ZIP thành định dạng HTML, PNG, JPEG hoặc PDF. + 4. Kết xuất tệp và kiểm tra đầu ra trong thư mục hiện tại. + + code: + platform: "net" + copy_title: "Sao chép" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "bấm vào để sao chép" + copy_done: "sao chép" + links: + # loop + - title: "Thêm ví dụ" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "Tài liệu" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // Thiết lập tệp ZIP đầu vào + string filePath = "input.zip"; + + // Khởi tạo GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // Đặt tùy chọn xem + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // Kết xuất tệp ZIP thành HTML bằng tài nguyên được nhúng + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + items: + # loop + - title: "Tải xuống Nuget" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "Cấp phép" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "Hiển thị các định dạng tệp khác bằng cách sử dụng C#" + exclude: "ZIP" + description: "API xem tài liệu và hình ảnh đa định dạng cho .NET. Xem một số định dạng tệp phổ biến bên dưới mà không cần bất kỳ trình xem bên ngoài nào." + items: + # format loop 1 + - name: "Kết xuất DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "Kết xuất CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "Kết xuất PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "Kết xuất XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "Kết xuất DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "Kết xuất XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "Kết xuất PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "Kết xuất AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "Kết xuất DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "Kết xuất TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "Kết xuất DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "Kết xuất VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "Kết xuất SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "Kết xuất HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "Kết xuất PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "Kết xuất JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "Kết xuất PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "Kết xuất EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "Kết xuất RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "Kết xuất ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "Kết xuất CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/net/zip.zh.md b/content/viewer/net/zip.zh.md new file mode 100644 index 00000000..5cd95d14 --- /dev/null +++ b/content/viewer/net/zip.zh.md @@ -0,0 +1,240 @@ +--- +############################# Static ############################ +layout: "format" +date: 2024-05-13T10:15:05 +draft: false +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: ".NET" +platform_tag: "net" + +############################# Head ############################# +head_title: ".NET ZIP Viewer API - 在 C# VB.NET 中读取、查看、渲染" +head_description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 ZIP。" + +############################# Header ############################ +title: "用于 C# .NET 应用程序的 ZIP 文件查看器" +description: ".NET 文档查看器 API,用于在任何类型的 C#、ASP.NET、VB.NET 和 .NET Core 应用程序中读取、渲染和显示 ZIP 文件。使用 HTML5、PDF 或使用几行代码以图像形式查看具有真实格式和布局的渲染文件。" +subtitle: "文档渲染解决方案" + +header_actions: + enable: true + items: + # loop + - title: "免费 Nuget 下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + + + +############################# About ############################ +about: + enable: true + title: "关于 .NET API 的 GroupDocs.Viewer" + link: "/viewer/net/" + link_title: "了解更多" + picture: "about_viewer.svg" # 480 X 400 + content: | + 通过添加几行代码,即可使用适用于 .NET API 的 GroupDocs.Viewer 在 .NET 应用程序中查看 190 多种流行文档格式。开发人员可以轻松地以 HTML5、图像或 PDF 模式显示 PDF、文字处理、Excel 电子表格、演示文稿、Visio、Project、Outlook 和许多其他流行的文档格式。文档渲染速度快,与原始源文件相同,并且不需要安装额外的软件或任何其他外部库。 + + + +############################# Steps ############################ +steps: + enable: true + title: "在 C# 中渲染 ZIP 文件的步骤" + content: | + 借助 GroupDocs.Viewer,您只需几个步骤即可将 ZIP 呈现为 HTML、JPEG、PNG 或 PDF。 + + 1. 使用您最喜欢的包管理器安装 GroupDocs.Viewer for .NET。 + 2. 创建 Viewer 类的实例并加载具有完整路径的 ZIP 文件。 + 3. 设置选项以将 ZIP 文件呈现为 HTML、PNG、JPEG 或 PDF 格式。 + 4. 渲染文件并检查当前目录中的输出。 + + code: + platform: "net" + copy_title: "复制" + install: + command: "dotnet add package GroupDocs.Viewer" + copy_tip: "点击复制" + copy_done: "复制的" + links: + # loop + - title: "更多示例" + link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET" + # loop + - title: "文档" + link: "https://docs.groupdocs.com/viewer/net/" + + content: | + ```csharp {style=abap} + + // 设置输入 ZIP 文件 + string filePath = "input.zip"; + + // 实例化 GroupDocs.Viewer + using (Viewer viewer = new Viewer(filePath)) + { + // 设置视图选项 + HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources(); + + // 将 ZIP 文件渲染为带有嵌入资源的 HTML + viewer.View(viewOptions); + } + + ``` + + +############################# Actions ############################ + +actions: + enable: true + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + items: + # loop + - title: "努吉特下载" + link: "https://nuget.org/packages/GroupDocs.Viewer" + color: "red" + # loop + - title: "许可" + link: "https://purchase.groupdocs.com/pricing/viewer/net/" + color: "light" + + +############################# More Formats ##################### +more_formats: + enable: true + title: "使用 C# 渲染其他文件格式" + exclude: "ZIP" + description: "适用于 .NET 的多格式文档和图像查看器 API。无需任何外部查看器即可查看以下一些流行的文件格式。" + items: + # format loop 1 + - name: "渲染 DOCX" + format: "DOCX" + link: "/viewer/net/docx/" + description: "Microsoft Word Open XML Document" + + # format loop 2 + - name: "渲染 CDR" + format: "CDR" + link: "/viewer/net/cdr/" + description: "CorelDRAW File" + + # format loop 3 + - name: "渲染 PPTX" + format: "PPTX" + link: "/viewer/net/pptx/" + description: "PowerPoint Open XML Presentation" + + # format loop 4 + - name: "渲染 XLSX" + format: "XLSX" + link: "/viewer/net/xlsx/" + description: "Microsoft Excel Open XML Spreadsheet" + + # format loop 5 + - name: "渲染 DWG" + format: "DWG" + link: "/viewer/net/dwg/" + description: "AutoCAD Drawing" + + # format loop 6 + - name: "渲染 XML" + format: "XML" + link: "/viewer/net/xml/" + description: "XML File" + + # format loop 7 + - name: "渲染 PSD" + format: "PSD" + link: "/viewer/net/psd/" + description: "Adobe Photoshop Document" + + # format loop 8 + - name: "渲染 AI" + format: "AI" + link: "/viewer/net/ai/" + description: "Adobe Illustrator Artwork" + + # format loop 9 + - name: "渲染 DOC" + format: "DOC" + link: "/viewer/net/doc/" + description: "Microsoft Word Document" + + # format loop 10 + - name: "渲染 TXT" + format: "TXT" + link: "/viewer/net/txt/" + description: "Plain Text File" + + # format loop 11 + - name: "渲染 DXF" + format: "DXF" + link: "/viewer/net/dxf/" + description: "Drawing Exchange Format File" + + # format loop 12 + - name: "渲染VCF" + format: "VCF" + link: "/viewer/net/vcf/" + description: "vCard File" + + # format loop 13 + - name: "渲染 SVG" + format: "SVG" + link: "/viewer/net/svg/" + description: "Scalable Vector Graphic" + + # format loop 14 + - name: "渲染 HTML" + format: "HTML" + link: "/viewer/net/html/" + description: "Hypertext Markup Language File" + + # format loop 15 + - name: "渲染 PDF" + format: "PDF" + link: "/viewer/net/pdf/" + description: "Portable Document Format File" + + # format loop 16 + - name: "渲染 JPEG" + format: "JPG" + link: "/viewer/net/jpg/" + description: "JPEG Image" + + # format loop 17 + - name: "渲染 PNG" + format: "PNG" + link: "/viewer/net/png/" + description: "Portable Network Graphic" + + # format loop 18 + - name: "渲染EML" + format: "EML" + link: "/viewer/net/eml/" + description: "E-Mail Message" + + # format loop 19 + - name: "渲染 RTF" + format: "RTF" + link: "/viewer/net/rtf/" + description: "Rich Text Format File" + + # format loop 20 + - name: "渲染 ODT" + format: "ODT" + link: "/viewer/net/odt/" + description: "OpenDocument Text Document" + + # format loop 21 + - name: "渲染 CSV" + format: "CSV" + link: "/viewer/net/csv/" + description: "Comma-Separated Values File" + + + +--- diff --git a/content/viewer/nodejs-java/_index.de.md b/content/viewer/nodejs-java/_index.de.md new file mode 100644 index 00000000..c4ebc105 --- /dev/null +++ b/content/viewer/nodejs-java/_index.de.md @@ -0,0 +1,282 @@ +--- +############################# Static ############################ +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: de +product: "Viewer" +product_tag: "viewer" +platform: "Node.js via Java" +platform_tag: "nodejs-java" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + + +############################# Head ############################ +head_title: "Node.js Document Viewer API für PDF Word Excel HTML Bilder und E-Mails" +head_description: "Node.js Dokumentbetrachter und Datei-Rendering-API. Fügen Sie PDF-Viewer, Word-Viewer, Excel-Viewer, Bild-Viewer, HTML-Viewer und E-Mail-Viewer in JavaScript-Anwendungen hinzu." + +############################# Header ############################ +title: "Node.js-API zum Rendern und Anzeigen von Dokumenten" +description: "Document Viewer-Bibliothek zur Entwicklung von JavaScript-Anwendungen, die Multiformatdokumente nativ rendern, anzeigen und bearbeiten und über 180 Dateiformate unterstützen." +words: + for: "for" + +actions: + main: "Kostenloser NPM-Download" + main_link: "https://www.npmjs.com/package/@groupdocs/groupdocs.viewer" + alt: "Lizenzierung" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/nodejs-java" + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + +release: + title: "Version {0} veröffentlicht" + notes: "Schau was neu ist" + downloads: "Downloads" + link: "https://releases.groupdocs.com/viewer/nodejs-java/release-notes/latest/" + +code: + title: "Rendern Sie PDF-Dateien in JavaScript" + more: "Mehr Beispiele" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Node.js-via-Java" + install: "npm i @groupdocs/groupdocs.viewer" + content: | + ```javascript {style=abap} + // Legen Sie Ausgabe-HTML-Optionen fest + const viewOptions = HtmlViewOptions.forEmbeddedResources() + + // Betrachter instanziieren + const viewer = new Viewer("resume.pdf") + + // Rendern Sie PDF in HTML + viewer.view(viewOptions) + viewer.close() + ``` +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer auf einen Blick" + description: "API zum Rendern, Anzeigen und Konvertieren von Dokumenten, Folien, Diagrammen und vielen anderen Dokumenttypen in Node.js-Anwendungen" + features: + # feature loop + - title: "Dokumente effizient und zuverlässig einsehen" + content: "Mit der GroupDocs.Viewer-API können Sie Dokumente aller unterstützten Formate mit flexiblen und leistungsstarken Optionen effizient in HTML, JPEG, PNG und PDF rendern und dabei die Integrität von Inhalt und Dokumentstruktur bewahren. GroupDocs.Viewer für Node.js funktioniert auf Windows- und Linux-Plattformen." + + # feature loop + - title: "Die gängigsten Datei- und Dokumentformate werden unterstützt" + content: "Wir unterstützen das Rendern der 180 gängigsten Datei- und Dokumentformate, darunter Word, Excel, PDF, PowerPoint, die OpenDocument-Formatfamilie, Archive, Raster- und Vektorbilder, E-Books, Programmiersprachen und Markups sowie viele andere Dateitypen, einschließlich verschlüsselter Dateien Dateien mit Passwortschutz." + + # feature loop + - title: "Anpassbare Ausgabe" + content: "GroupDocs.Viewer ermöglicht nicht nur das Rendern des Dokuments, sondern auch die Steuerung, wie genau, welche Teile des Dokuments gerendert werden sollen oder jetzt, wie sie gerendert werden sollen, und verschiedene Transformationen auf die gerenderte Ausgabe anzuwenden." + +############################# Platforms ############################ +platforms: + enable: true + title: "Plattformunabhängigkeit" + description: "GroupDocs.Viewer für Node.js unterstützt die folgenden Betriebssysteme, Frameworks und Paketmanager" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "Eclipse" + image: "eclipse" + # platform loop + - title: "IntelliJ" + image: "intellij" + # platform loop + - title: "Windows" + image: "windows" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "NPM" + image: "npm" + +############################# File formats ############################ +formats: + enable: true + title: "Unterstützte Dateiformate" + description: | + GroupDocs.Viewer für Node.js über Java unterstützt Vorgänge mit den folgenden [Dateiformaten](https://docs.groupdocs.com/viewer/nodejs-java/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument und Textformate + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### Bilder, Grafiken und Diagramme + * **Rasterbilder:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### Andere + * **Netz:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **Archiv:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **Andere:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "GroupDocs.Viewer-Funktionen" + description: "PDF- und Office-Dokumente nahtlos rendern, anzeigen und konvertieren" + + items: + # feature loop + - icon: "viewhtml" + title: "Dokumente in HTML anzeigen" + content: "Konvertieren Sie Dokumente jeglicher Art mit CSS und SVG in ein HTML-Dokument, das in jedem modernen Webbrowser angezeigt werden kann." + + # feature loop + - icon: "rasterize" + title: "Dokumente rastern" + content: "Rastern Sie jedes unterstützte Dokumentformat in ein Rasterbild, mit anpassbarem Bildformat und Komprimierungsqualität." + + # feature loop + - icon: "sourcecode" + title: "Programmiercodes rendern und hervorheben" + content: "Unterstützung aller gängigen Programmier-, Skript- und Auszeichnungssprachen mit der Möglichkeit, deren Syntax zu analysieren und hervorzuheben." + + # feature loop + - icon: "convertpdf" + title: "In PDF konvertieren" + content: "Dokumente in jedem unterstützten Format können mit anpassbaren Optionen einfach konvertiert und im PDF-Format gespeichert werden." + + # feature loop + - icon: "transform" + title: "Wenden Sie Transformationen an" + content: "Das Ausgabedokument kann während des Renderns transformiert werden – Seiten können gedreht und/oder neu angeordnet werden und Textwasserzeichen können darüber platziert werden." + + # feature loop + - icon: "adjustment" + title: "Anpassung der HTML-Ausgabe" + content: "Ausgabe-HTML-Dokumente, die vom GroupDocs.Viewer generiert werden, können sehr fein abgestimmt werden: Sie können im Stream oder in der Datei gespeichert werden, mit externen oder eingebetteten Ressourcen, Rückrufen usw." + + # feature loop + - icon: "complex" + title: "Unterstützung komplexer Dokumentenstrukturen" + content: "GroupDocs.Viewer unterstützt nicht nur einzelne Dokumente, sondern auch Dateien, die intern eine Liste oder hierarchische Struktur von Dokumenten enthalten, wie E-Mail-Nachrichten mit Anhängen, ZIP-Archive mit internen Dateien in Ordnern, mehrseitige TIFF-Bilder usw." + + # feature loop + - icon: "optimization" + title: "Optimierungsmöglichkeiten" + content: "GroupDocs.Viewer enthält ein anpassbares Cache-Subsystem, das die Ladezeit durch die Verwendung der zwischengespeicherten Versionen der Dokumente verkürzen kann. Außerdem ermöglicht eine Reihe verschiedener Optionen für verschiedene Formate, einige unnötige Teile oder Aspekte von Dokumenten aus der Darstellung auszuschließen (Schriftarten, ausgeblendete Arbeitsblätter, E-Mail-Anhänge), um die Gesamtleistung zu optimieren" + + # feature loop + - icon: "passwordprotected" + title: "Unterstützung passwortgeschützter Dokumente" + content: "GroupDocs.Viewer ermöglicht das Öffnen verschlüsselter Dokumente verschiedener Typen: PDF, WordProcessing, Tabellenkalkulation, Präsentation und andere, indem in den Ladeoptionen ein Passwort angegeben wird." + +############################# Code samples ############################ +code_samples: + enable: true + title: "Codebeispiele" + description: "Einige Anwendungsfälle typischer GroupDocs.Viewer für Node.js über Java-Operationen" + items: + # code sample loop + - title: "Rendern Sie DOCX in HTML" + content: | + Mit den Eigenschaften der Klasse HtmlViewOptions können Sie den Konvertierungsprozess steuern, mehr dazu [hier](https://docs.groupdocs.com/viewer/nodejs-java/rendering-to-html/). Sie können beispielsweise alle externen Ressourcen in die Ausgabe-HTML-Datei einbetten, die Ausgabedatei verkleinern und für den Druck optimieren. + {{< landing/code title="JavaScript">}} + ```javascript {style=abap} + import { Viewer, HtmlViewOptions } from '@groupdocs/groupdocs.viewer' + + // Legen Sie Ausgabe-HTML-Optionen fest + const viewOptions = HtmlViewOptions.forEmbeddedResources() + + // Betrachter instanziieren + const viewer = new Viewer("resume.docx") + + // Rendern Sie DOCX mit eingebetteten Ressourcen in HTML + viewer.view(viewOptions) + viewer.close() + ``` + {{< /landing/code >}} + # code sample loop + - title: "Exportieren Sie PPTX in PDF" + content: | + Erstellen Sie eine PdfViewOptions-Klasseninstanz und übergeben Sie sie an die Viewer.view-Methode, um eine PowerPoint PPTX-Datei in PDF zu konvertieren. Mit den Eigenschaften der Klasse PdfViewOptions können Sie den Konvertierungsprozess steuern. Sie können beispielsweise die ausgegebene PDF-Datei schützen, ihre Seiten neu anordnen und die Qualität der Dokumentbilder festlegen. Einzelheiten finden Sie im [folgenden Dokumentationsabschnitt](https://docs.groupdocs.com/viewer/nodejs-java/rendering-to-pdf/). + {{< landing/code title="JavaScript">}} + ```javascript {style=abap} + import { Viewer, PdfViewOptions } from '@groupdocs/groupdocs.viewer' + + // Legen Sie die PDF-Ausgabeoptionen fest + const viewOptions = new PdfViewOptions("presentation.pdf") + + // Betrachter instanziieren + const viewer = new Viewer("presentation.pptx") + + // Exportieren Sie PPTX in PDF + viewer.view(viewOptions) + viewer.close() + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "GroupDocs-Produktbewertungen" +# description: "Verlassen Sie sich nicht nur auf unser Wort. Sehen Sie, was andere Entwickler über unsere APIs sagen" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Exzellenter Service und hervorragende Produkte. Sie waren während des GroupDocs.Viewer für .NET-Implementierungsprozesses äußerst hilfsbereit und reaktionsschnell und können sie nur wärmstens empfehlen." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Nach der Implementierung und Verwendung von GroupDocs.Viewer für .NET im Projekt scheint es sehr gut zu funktionieren. Ich habe es mit vielen Dokumenten getestet und bisher so gut. Alles, was ich darauf geworfen habe, wird gut gerendert und sieht genauso gut aus wie in einem PDF-Viewer oder MS Word." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- diff --git a/content/viewer/nodejs-java/_index.en.md b/content/viewer/nodejs-java/_index.en.md new file mode 100644 index 00000000..03e34dc2 --- /dev/null +++ b/content/viewer/nodejs-java/_index.en.md @@ -0,0 +1,282 @@ +--- +############################# Static ############################ +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: en +product: "Viewer" +product_tag: "viewer" +platform: "Node.js via Java" +platform_tag: "nodejs-java" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + + +############################# Head ############################ +head_title: "Node.js Document Viewer API for PDF Word Excel HTML Images & Emails" +head_description: "Node.js document viewer & files rendering API. Add PDF viewer, Word viewer, Excel viewer, Image viewer, HTML viewer, Email viewer in JavaScript applications." + +############################# Header ############################ +title: "Node.js API to render & display Documents" +description: "Document Viewer library to develop JavaScript applications that natively render, view and manipulate, multi-format documents supporting 180+ file formats." +words: + for: "for" + +actions: + main: "Free NPM Download" + main_link: "https://www.npmjs.com/package/@groupdocs/groupdocs.viewer" + alt: "Licensing" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/nodejs-java" + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + +release: + title: "Version {0} released" + notes: "See what’s new" + downloads: "Downloads" + link: "https://releases.groupdocs.com/viewer/nodejs-java/release-notes/latest/" + +code: + title: "Render PDF files in JavaScript" + more: "More examples" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Node.js-via-Java" + install: "npm i @groupdocs/groupdocs.viewer" + content: | + ```javascript {style=abap} + // Set output HTML options, one file per page + const viewOptions = HtmlViewOptions.forEmbeddedResources() + + // Instantiate Viewer + const viewer = new Viewer("resume.pdf") + + // Render PDF to HTML with embedded resources + viewer.view(viewOptions) + viewer.close() + ``` +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer at a glance" + description: "API to render, display, convert documents, slides, diagrams, and many other document types in Node.js applications" + features: + # feature loop + - title: "View documents efficiently & reliably" + content: "With GroupDocs.Viewer API you can efficiently render documents of any supportable formats to HTML, JPEG, PNG, and PDF with flexible and powerful options while maintaining content and document structure integrity. GroupDocs.Viewer for Node.js works on Windows and Linux platforms." + + # feature loop + - title: "Most popular file and document formats are supported" + content: "We support rendering over the 180 most popular file and document formats that include Word, Excel, PDF, PowerPoint, OpenDocument formats family, Archives, Raster and Vector images, e-Books, programming languages and markups, and many other file types, including encrypted files with password protection." + + # feature loop + - title: "Customizable output" + content: "GroupDocs.Viewer allows not only to render the document, but also to control how exactly, which parts of the document should be rendered or now, how they should be rendered, and to apply different transformations to the rendered output." + +############################# Platforms ############################ +platforms: + enable: true + title: "Platform independence" + description: "GroupDocs.Viewer for Node.js supports the following operating systems, frameworks and package managers" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "Eclipse" + image: "eclipse" + # platform loop + - title: "IntelliJ" + image: "intellij" + # platform loop + - title: "Windows" + image: "windows" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "NPM" + image: "npm" + +############################# File formats ############################ +formats: + enable: true + title: "Supported file formats" + description: | + GroupDocs.Viewer for Node.js via Java supports operations with the following [file formats](https://docs.groupdocs.com/viewer/nodejs-java/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument and text formats + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### Images, Graphics & Diagrams + * **Raster images:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### Other + * **Web:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **Archives:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **Other:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "GroupDocs.Viewer features" + description: "Seamlessly render, display, and convert PDF and Office Documents" + + items: + # feature loop + - icon: "viewhtml" + title: "View documents in HTML" + content: "Convert document of any type into a HTML document with CSS and SVG, which can be displayed in any modern web-browser." + + # feature loop + - icon: "rasterize" + title: "Rasterize documents" + content: "Rasterize any supportable document format to the raster image, with adjustable image format and compression quality." + + # feature loop + - icon: "sourcecode" + title: "Render and highlight programming codes" + content: "Support of all popular programming, scripting, and markup languages, with ability to parse and highlight their syntax." + + # feature loop + - icon: "convertpdf" + title: "Convert to PDF" + content: "Document of any supportable format can be easily converted and saved to the PDF with adjustable options." + + # feature loop + - icon: "transform" + title: "Apply transformations" + content: "Output document can be transformed during rendering - pages can be rotated and/or rearranged, and text watermark may be placed atop of them." + + # feature loop + - icon: "adjustment" + title: "HTML output adjustment" + content: "Output HTML documents, generated by the GroupDocs.Viewer, can be tuned very finely: it is allowed to save to the stream or file, with external or embedded resources, callbacks and so on." + + # feature loop + - icon: "complex" + title: "Support of complex document structures" + content: "GroupDocs.Viewer supports not only the single documents, but also files, which internally contain a list or hierarchical structure of documents, like email messages with attachments, ZIP archives with internal files within folders, multi-page TIFF images, and so on." + + # feature loop + - icon: "optimization" + title: "Optimization options" + content: "GroupDocs.Viewer contains an adjustable cache subsystem, which can fasten the loading time by using the cached versions of the documents. Also a set of different options for different formats allows to exclude some unnecessary parts or aspects of documents from the rendering (fonts, hidded worksheets, email attachments) to optimize the overall performance" + + # feature loop + - icon: "passwordprotected" + title: "Support of password-protected documents" + content: "GroupDocs.Viewer allows to open the encrypted documents of different types: PDF, WordProcessing, Spreadsheet, Presentation, and other, by specifying a password in the loading options." + +############################# Code samples ############################ +code_samples: + enable: true + title: "Code samples" + description: "Some use cases of typical GroupDocs.Viewer for Node.js via Java operations" + items: + # code sample loop + - title: "Render DOCX to HTML" + content: | + The `HtmlViewOptions` class properties allow you to control the conversion process, more on that [here](https://docs.groupdocs.com/viewer/nodejs-java/rendering-to-html/). For instance, you can embed all external resources in the output HTML file, minify the output file, and optimize it for printing. + {{< landing/code title="JavaScript">}} + ```javascript {style=abap} + import { Viewer, HtmlViewOptions } from '@groupdocs/groupdocs.viewer' + + // Set output HTML options, one file per page + const viewOptions = HtmlViewOptions.forEmbeddedResources() + + // Instantiate Viewer + const viewer = new Viewer("resume.docx") + + // Render DOCX to HTML with embedded resources + viewer.view(viewOptions) + viewer.close() + ``` + {{< /landing/code >}} + # code sample loop + - title: "Export PPTX to PDF" + content: | + Create a `PdfViewOptions` class instance and pass it to the `Viewer.view` method to convert a PowerPoint PPTX file to PDF. The `PdfViewOptions` class properties allow you to control the conversion process. For instance, you can protect the output PDF file, reorder its pages, and specify the quality of document images. Refer to the [following documentation section](https://docs.groupdocs.com/viewer/nodejs-java/rendering-to-pdf/) for details. + {{< landing/code title="JavaScript">}} + ```javascript {style=abap} + import { Viewer, PdfViewOptions } from '@groupdocs/groupdocs.viewer' + + // Set output PDF options + const viewOptions = new PdfViewOptions("presentation.pdf") + + // Instantiate Viewer + const viewer = new Viewer("presentation.pptx") + + // Export PPTX to PDF + viewer.view(viewOptions) + viewer.close() + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "GroupDocs products reviews" +# description: "Don't just take our word for it. See what other developers say about our APIs" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Excellent service and excellent products. They were extremely helpful and responsive during the GroupDocs.Viewer for .NET implementation process, can’t recommend them highly enough." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "After implementing and using GroupDocs.Viewer for .NET in the project it looks to be working very well. I have tested with a lot of documents and so far so good. Everything I’ve thrown at it renders nicely and looks just as good as it would in a PDF viewer or MS Word." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- diff --git a/content/viewer/nodejs-java/_index.es.md b/content/viewer/nodejs-java/_index.es.md new file mode 100644 index 00000000..799d9f2d --- /dev/null +++ b/content/viewer/nodejs-java/_index.es.md @@ -0,0 +1,282 @@ +--- +############################# Static ############################ +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: es +product: "Viewer" +product_tag: "viewer" +platform: "Node.js via Java" +platform_tag: "nodejs-java" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + + +############################# Head ############################ +head_title: "API de visor de documentos de Node.js para PDF, Word, Excel, HTML, imágenes y correos electrónicos" +head_description: "Visor de documentos Node.js y API de representación de archivos. Agregue visor de PDF, visor de Word, visor de Excel, visor de imágenes, visor HTML y visor de correo electrónico en aplicaciones JavaScript." + +############################# Header ############################ +title: "API de Node.js para renderizar y mostrar documentos" +description: "Biblioteca Document Viewer para desarrollar aplicaciones JavaScript que renderizan, ven y manipulan de forma nativa documentos multiformato que admiten más de 180 formatos de archivo." +words: + for: "for" + +actions: + main: "Descarga gratuita de NPM" + main_link: "https://www.npmjs.com/package/@groupdocs/groupdocs.viewer" + alt: "Licencia" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/nodejs-java" + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + +release: + title: "Versión {0} lanzada" + notes: "Ver qué hay de nuevo" + downloads: "Descargas" + link: "https://releases.groupdocs.com/viewer/nodejs-java/release-notes/latest/" + +code: + title: "Renderizar archivos PDF en JavaScript" + more: "Más ejemplos" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Node.js-via-Java" + install: "npm i @groupdocs/groupdocs.viewer" + content: | + ```javascript {style=abap} + // Establecer opciones HTML de salida + const viewOptions = HtmlViewOptions.forEmbeddedResources() + + // Visor de instancias + const viewer = new Viewer("resume.pdf") + + // Renderice PDF a HTML con recursos integrados + viewer.view(viewOptions) + viewer.close() + ``` +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer de un vistazo" + description: "API para renderizar, mostrar, convertir documentos, diapositivas, diagramas y muchos otros tipos de documentos en aplicaciones Node.js" + features: + # feature loop + - title: "Vea documentos de manera eficiente y confiable" + content: "Con GroupDocs.Viewer API puede representar de manera eficiente documentos de cualquier formato compatible en HTML, JPEG, PNG y PDF con opciones flexibles y potentes mientras mantiene la integridad del contenido y la estructura del documento. GroupDocs.Viewer para Node.js funciona en plataformas Windows y Linux." + + # feature loop + - title: "Se admiten los formatos de archivos y documentos más populares" + content: "Admitimos la renderización de los 180 formatos de archivos y documentos más populares, que incluyen Word, Excel, PDF, PowerPoint, familia de formatos OpenDocument, archivos, imágenes rasterizadas y vectoriales, libros electrónicos, lenguajes de programación y marcas, y muchos otros tipos de archivos, incluidos los cifrados. archivos con protección por contraseña." + + # feature loop + - title: "Salida personalizable" + content: "GroupDocs.Viewer permite no sólo renderizar el documento, sino también controlar cómo exactamente, qué partes del documento deben renderizarse o ahora, cómo deben renderizarse y aplicar diferentes transformaciones a la salida renderizada." + +############################# Platforms ############################ +platforms: + enable: true + title: "Independencia de plataforma" + description: "GroupDocs.Viewer para Node.js es compatible con los siguientes sistemas operativos, marcos y administradores de paquetes" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "Eclipse" + image: "eclipse" + # platform loop + - title: "IntelliJ" + image: "intellij" + # platform loop + - title: "Windows" + image: "windows" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "NPM" + image: "npm" + +############################# File formats ############################ +formats: + enable: true + title: "Formatos de archivo admitidos" + description: | + GroupDocs.Viewer para Node.js a través de Java admite operaciones con los siguientes [formatos de archivo](https://docs.groupdocs.com/viewer/nodejs-java/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument y formatos de texto + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### Imágenes, gráficos y diagramas + * **Imágenes rasterizadas:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### Otro + * **Web:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **Archivo:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **Otro:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "Funciones de GroupDocs.Viewer" + description: "Represente, visualice y convierta sin problemas documentos PDF y Office" + + items: + # feature loop + - icon: "viewhtml" + title: "Ver documentos en HTML" + content: "Convierta documentos de cualquier tipo en un documento HTML con CSS y SVG, que se puede mostrar en cualquier navegador web moderno." + + # feature loop + - icon: "rasterize" + title: "Rasterizar documentos" + content: "Rasterice cualquier formato de documento compatible a la imagen rasterizada, con formato de imagen ajustable y calidad de compresión." + + # feature loop + - icon: "sourcecode" + title: "Renderizar y resaltar códigos de programación" + content: "Soporte de todos los lenguajes de programación, scripting y marcado populares, con capacidad de analizar y resaltar su sintaxis." + + # feature loop + - icon: "convertpdf" + title: "Convertir a PDF" + content: "Los documentos de cualquier formato compatible se pueden convertir y guardar fácilmente en PDF con opciones ajustables." + + # feature loop + - icon: "transform" + title: "Aplicar transformaciones" + content: "El documento de salida se puede transformar durante la renderización: las páginas se pueden rotar y/o reorganizar, y se puede colocar una marca de agua de texto encima de ellas." + + # feature loop + - icon: "adjustment" + title: "Ajuste de salida HTML" + content: "Los documentos HTML de salida, generados por GroupDocs.Viewer, se pueden ajustar con mucha precisión: se permite guardarlos en una secuencia o archivo, con recursos externos o integrados, devoluciones de llamada, etc." + + # feature loop + - icon: "complex" + title: "Soporte de estructuras de documentos complejas." + content: "GroupDocs.Viewer admite no solo documentos individuales, sino también archivos que contienen internamente una lista o estructura jerárquica de documentos, como mensajes de correo electrónico con archivos adjuntos, archivos ZIP con archivos internos dentro de carpetas, imágenes TIFF de varias páginas, etc." + + # feature loop + - icon: "optimization" + title: "Opciones de optimización" + content: "GroupDocs.Viewer contiene un subsistema de caché ajustable, que puede acelerar el tiempo de carga utilizando las versiones almacenadas en caché de los documentos. Además, un conjunto de diferentes opciones para diferentes formatos permite excluir algunas partes o aspectos innecesarios de los documentos del renderizado (fuentes, hojas de trabajo ocultas, archivos adjuntos de correo electrónico) para optimizar el rendimiento general." + + # feature loop + - icon: "passwordprotected" + title: "Soporte de documentos protegidos con contraseña." + content: "GroupDocs.Viewer permite abrir documentos cifrados de diferentes tipos: PDF, WordProcessing, Hoja de cálculo, Presentación y otros, especificando una contraseña en las opciones de carga." + +############################# Code samples ############################ +code_samples: + enable: true + title: "Ejemplos de código" + description: "Algunos casos de uso de GroupDocs.Viewer típico para Node.js mediante operaciones Java" + items: + # code sample loop + - title: "Renderizar DOCX a HTML" + content: | + Las propiedades de la clase `HtmlViewOptions` le permiten controlar el proceso de conversión, más sobre eso [aquí](https://docs.groupdocs.com/viewer/nodejs-java/rendering-to-html/). Por ejemplo, puede incrustar todos los recursos externos en el archivo HTML de salida, minimizar el archivo de salida y optimizarlo para imprimir. + {{< landing/code title="JavaScript">}} + ```javascript {style=abap} + import { Viewer, HtmlViewOptions } from '@groupdocs/groupdocs.viewer' + + // Establecer opciones HTML de salida + const viewOptions = HtmlViewOptions.forEmbeddedResources() + + // Visor de instancias + const viewer = new Viewer("resume.docx") + + // Renderice DOCX a HTML con recursos integrados + viewer.view(viewOptions) + viewer.close() + ``` + {{< /landing/code >}} + # code sample loop + - title: "Exportar PPTX a PDF" + content: | + Cree una instancia de clase `PdfViewOptions` y pásela al método `Viewer.view` para convertir un archivo PPTX de PowerPoint a PDF. Las propiedades de la clase `PdfViewOptions` le permiten controlar el proceso de conversión. Por ejemplo, puede proteger el archivo PDF de salida, reordenar sus páginas y especificar la calidad de las imágenes del documento. Consulte la [siguiente sección de documentación](https://docs.groupdocs.com/viewer/nodejs-java/rendering-to-pdf/) para obtener más detalles. + {{< landing/code title="JavaScript">}} + ```javascript {style=abap} + import { Viewer, PdfViewOptions } from '@groupdocs/groupdocs.viewer' + + // Establecer opciones de salida de PDF + const viewOptions = new PdfViewOptions("presentation.pdf") + + // Visor de instancias + const viewer = new Viewer("presentation.pptx") + + // Exportar PPTX a PDF + viewer.view(viewOptions) + viewer.close() + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "Reseñas de productos GroupDocs" +# description: "No confíe sólo en nuestra palabra. Vea lo que otros desarrolladores dicen sobre nuestras API" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Excelente servicio y excelentes productos. Fueron extremadamente útiles y receptivos durante el proceso de implementación de GroupDocs.Viewer para .NET, no puedo recomendarlos lo suficiente." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Después de implementar y usar GroupDocs.Viewer para .NET en el proyecto, parece estar funcionando muy bien. He probado con muchos documentos y hasta ahora todo bien. Todo lo que le he añadido se reproduce muy bien y se ve tan bien como en un visor de PDF o MS Word." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- diff --git a/content/viewer/nodejs-java/_index.fa.md b/content/viewer/nodejs-java/_index.fa.md new file mode 100644 index 00000000..f36555c3 --- /dev/null +++ b/content/viewer/nodejs-java/_index.fa.md @@ -0,0 +1,282 @@ +--- +############################# Static ############################ +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: "Node.js via Java" +platform_tag: "nodejs-java" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + + +############################# Head ############################ +head_title: "Node.js Document Viewer API برای تصاویر و ایمیل های PDF Word Excel HTML" +head_description: "نمایشگر اسناد Node.js و API رندر فایل ها. نمایشگر PDF، نمایشگر Word، نمایشگر اکسل، نمایشگر تصویر، نمایشگر HTML، نمایشگر ایمیل را در برنامه های جاوا اسکریپت اضافه کنید." + +############################# Header ############################ +title: "Node.js API برای ارائه و نمایش اسناد" +description: "کتابخانه Document Viewer برای توسعه برنامه‌های جاوا اسکریپت که اسناد چند قالبی را به‌طور بومی رندر، مشاهده و دستکاری می‌کنند و بیش از 180 فرمت فایل را پشتیبانی می‌کنند." +words: + for: "for" + +actions: + main: "دانلود رایگان NPM" + main_link: "https://www.npmjs.com/package/@groupdocs/groupdocs.viewer" + alt: "صدور مجوز" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/nodejs-java" + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + +release: + title: "نسخه {0} منتشر شد" + notes: "ببینید چه چیزی جدید است" + downloads: "دانلودها" + link: "https://releases.groupdocs.com/viewer/nodejs-java/release-notes/latest/" + +code: + title: "فایل های PDF را در جاوا اسکریپت رندر کنید" + more: "نمونه های بیشتر" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Node.js-via-Java" + install: "npm i @groupdocs/groupdocs.viewer" + content: | + ```javascript {style=abap} + // گزینه های خروجی HTML را تنظیم کنید، یک فایل در هر صفحه + const viewOptions = HtmlViewOptions.forEmbeddedResources() + + // Instantiate Viewer + const viewer = new Viewer("resume.pdf") + + // PDF را با منابع تعبیه شده به HTML ارائه دهید + viewer.view(viewOptions) + viewer.close() + ``` +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer در یک نگاه" + description: "API برای رندر، نمایش، تبدیل اسناد، اسلایدها، نمودارها و بسیاری از انواع اسناد دیگر در برنامه های Node.js" + features: + # feature loop + - title: "اسناد را کارآمد و قابل اعتماد مشاهده کنید" + content: "با GroupDocs.Viewer API می‌توانید با حفظ یکپارچگی محتوا و ساختار سند، اسناد را با هر فرمت قابل پشتیبانی به HTML، JPEG، PNG، و PDF با گزینه‌های منعطف و قدرتمند ارائه کنید. GroupDocs.Viewer برای Node.js روی پلتفرم های ویندوز و لینوکس کار می کند." + + # feature loop + - title: "اکثر فرمت های فایل و سند محبوب پشتیبانی می شوند" + content: "ما از ارائه بیش از 180 فرمت فایل و سند محبوب پشتیبانی می کنیم که شامل Word، Excel، PDF، PowerPoint، خانواده فرمت های OpenDocument، آرشیو، تصاویر Raster و Vector، کتاب های الکترونیکی، زبان های برنامه نویسی و نشانه گذاری ها، و بسیاری از انواع فایل های دیگر، از جمله رمزگذاری شده است. فایل هایی با محافظت از رمز عبور" + + # feature loop + - title: "خروجی قابل تنظیم" + content: "GroupDocs.Viewer نه تنها اجازه می دهد تا سند را رندر کند، بلکه کنترل کند که دقیقاً چه قسمت هایی از سند باید رندر شوند یا اکنون، چگونه باید رندر شوند و تبدیل های مختلف را در خروجی رندر شده اعمال می کند." + +############################# Platforms ############################ +platforms: + enable: true + title: "استقلال سکو" + description: "GroupDocs.Viewer برای Node.js از سیستم عامل ها، فریمورک ها و مدیریت بسته های زیر پشتیبانی می کند" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "Eclipse" + image: "eclipse" + # platform loop + - title: "IntelliJ" + image: "intellij" + # platform loop + - title: "Windows" + image: "windows" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "NPM" + image: "npm" + +############################# File formats ############################ +formats: + enable: true + title: "فرمت های فایل پشتیبانی شده" + description: | + GroupDocs.Viewer برای Node.js از طریق جاوا از عملیات ب زیر پشتیبانی می‌کند [formats](https://docs.groupdocs.com/viewer/nodejs-java/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### مایکروسافت آفیس، OpenDocument و فرمت های متنی + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### تصاویر، گرافیک و نمودارها + * **تصاویر شطرنجی:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### دیگر + * **وب:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **آرشیوها:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **دیگر:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "ویژگی های GroupDocs.Viewer" + description: "رندر، نمایش، و تبدیل یکپارچه PDF و اسناد آفیس" + + items: + # feature loop + - icon: "viewhtml" + title: "مشاهده اسناد در HTML" + content: "هر نوع سندی را با CSS و SVG به یک سند HTML تبدیل کنید، که می تواند در هر مرورگر وب مدرن نمایش داده شود." + + # feature loop + - icon: "rasterize" + title: "اسناد را شطرنجی کنید" + content: "هر قالب سند قابل پشتیبانی را با فرمت تصویر قابل تنظیم و کیفیت فشرده سازی به تصویر شطرنجی تبدیل کنید." + + # feature loop + - icon: "sourcecode" + title: "کدهای برنامه نویسی را رندر و برجسته کنید" + content: "پشتیبانی از همه زبان‌های برنامه‌نویسی، اسکریپت‌نویسی و نشانه‌گذاری محبوب، با قابلیت تجزیه و برجسته کردن نحو آنها." + + # feature loop + - icon: "convertpdf" + title: "تبدیل به PDF" + content: "سند با هر فرمت قابل پشتیبانی را می توان به راحتی با گزینه های قابل تنظیم به PDF تبدیل و ذخیره کرد." + + # feature loop + - icon: "transform" + title: "تغییرات را اعمال کنید" + content: "سند خروجی را می توان در حین رندر تبدیل کرد - صفحات را می توان چرخاند و/یا مرتب کرد و واترمارک متنی در بالای آنها قرار داد." + + # feature loop + - icon: "adjustment" + title: "تنظیم خروجی HTML" + content: "اسناد HTML خروجی، تولید شده توسط GroupDocs.Viewer، را می توان بسیار دقیق تنظیم کرد: امکان ذخیره در جریان یا فایل، با منابع خارجی یا جاسازی شده، تماس های برگشتی و غیره وجود دارد." + + # feature loop + - icon: "complex" + title: "پشتیبانی از ساختارهای پیچیده سند" + content: "GroupDocs.Viewer نه تنها از اسناد منفرد، بلکه از فایل‌هایی نیز پشتیبانی می‌کند که در داخل شامل فهرست یا ساختار سلسله مراتبی از اسناد هستند، مانند پیام‌های ایمیل با پیوست‌ها، آرشیوهای ZIP با فایل‌های داخلی درون پوشه‌ها، تصاویر TIFF چند صفحه‌ای و غیره." + + # feature loop + - icon: "optimization" + title: "گزینه های بهینه سازی" + content: "GroupDocs.Viewer حاوی یک زیرسیستم کش قابل تنظیم است که می تواند با استفاده از نسخه های ذخیره شده اسناد، زمان بارگذاری را تسریع بخشد. همچنین مجموعه ای از گزینه های مختلف برای فرمت های مختلف اجازه می دهد تا برخی از بخش ها یا جنبه های غیر ضروری اسناد را از رندر حذف کنید (فونت ها، کاربرگ های مخفی، پیوست های ایمیل) برای بهینه سازی عملکرد کلی." + + # feature loop + - icon: "passwordprotected" + title: "پشتیبانی از اسناد محافظت شده با رمز عبور" + content: "GroupDocs.Viewer اجازه می دهد تا اسناد رمزگذاری شده را از انواع مختلف باز کنید: PDF، WordProcessing، Spreadsheet، Presentation و غیره، با تعیین رمز عبور در گزینه های بارگیری." + +############################# Code samples ############################ +code_samples: + enable: true + title: "نمونه کد" + description: "برخی از موارد معمولی GroupDocs.Viewer برای Node.js از طریق عملیات جاوا استفاده می کنند" + items: + # code sample loop + - title: "DOCX را به HTML رندر کنید" + content: | + ویژگی‌های کلاس به شما امکان می‌دهد فرآیند تبدیل را کنترل کنید، بیشتر در مورد آن [HtmlViewOptions](https://docs.groupdocs.com/viewer/nodejs-java/rendering-to-html/). به عنوان مثال، می توانید تمام منابع خارجی را در فایل HTML خروجی جاسازی کنید، فایل خروجی را کوچک کنید و آن را برای چاپ بهینه کنید. + {{< landing/code title="JavaScript">}} + ```javascript {style=abap} + import { Viewer, HtmlViewOptions } from '@groupdocs/groupdocs.viewer' + + // گزینه های خروجی HTML را تنظیم کنید، یک فایل در هر صفحه + const viewOptions = HtmlViewOptions.forEmbeddedResources() + + // Instantiate Viewer + const viewer = new Viewer("resume.docx") + + // DOCX را با منابع جاسازی شده به HTML ارائه دهید + viewer.view(viewOptions) + viewer.close() + ``` + {{< /landing/code >}} + # code sample loop + - title: "PPTX را به PDF صادر کنید" + content: | + یک نمونه کلاس PdfViewOptions ایجاد کنید و آن را به روش Viewer.view منتقل کنید تا یک فایل پاورپوینت PPTX را به PDF تبدیل کنید. ویژگی های کلاس `PdfViewOptions` به شما امکان می دهد فرآیند تبدیل را کنترل کنید. به عنوان مثال، می توانید از فایل PDF خروجی محافظت کنید، صفحات آن را مجددا مرتب کنید و کیفیت تصاویر سند را مشخص کنید. برای جزئیات بیشتر ب [PDF](https://docs.groupdocs.com/viewer/nodejs-java/rendering-to-pdf/) مراجعه کنید. + {{< landing/code title="JavaScript">}} + ```javascript {style=abap} + import { Viewer, PdfViewOptions } from '@groupdocs/groupdocs.viewer' + + // گزینه های PDF خروجی را تنظیم کنید + const viewOptions = new PdfViewOptions("presentation.pdf") + + // Instantiate Viewer + const viewer = new Viewer("presentation.pptx") + + // PPTX را به PDF صادر کنید + viewer.view(viewOptions) + viewer.close() + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "بررسی محصولات GroupDocs" +# description: "فقط حرف ما را قبول نکنید. ببینید سایر توسعه دهندگان در مورد API های ما چه می گویند" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "خدمات عالی و محصولات عالی. آنها در طول فرآیند اجرای GroupDocs.Viewer برای دات نت بسیار مفید و پاسخگو بودند، نمی توان آنها را به اندازه کافی توصیه کرد." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "پس از پیاده سازی و استفاده از GroupDocs.Viewer برای دات نت در پروژه، به نظر می رسد که بسیار خوب کار می کند. من با مدارک زیادی تست کردم و تا الان خیلی خوبه. همه چیزهایی که به آن پرتاب کرده‌ام به خوبی رندر می‌شوند و به همان خوبی که در یک نمایشگر PDF یا MS Word به نظر می‌رسند." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- diff --git a/content/viewer/nodejs-java/_index.fr.md b/content/viewer/nodejs-java/_index.fr.md new file mode 100644 index 00000000..da271695 --- /dev/null +++ b/content/viewer/nodejs-java/_index.fr.md @@ -0,0 +1,282 @@ +--- +############################# Static ############################ +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: "Node.js via Java" +platform_tag: "nodejs-java" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + + +############################# Head ############################ +head_title: "API de visualisation de documents Node.js pour PDF Word Excel Images HTML et e-mails" +head_description: "Visionneuse de documents Node.js et API de rendu de fichiers. Ajoutez une visionneuse PDF, une visionneuse Word, une visionneuse Excel, une visionneuse d'images, une visionneuse HTML, une visionneuse d'e-mails dans les applications JavaScript." + +############################# Header ############################ +title: "API Node.js pour restituer et afficher les documents" +description: "Bibliothèque Document Viewer pour développer des applications JavaScript qui restituent, visualisent et manipulent de manière native des documents multiformats prenant en charge plus de 180 formats de fichiers." +words: + for: "for" + +actions: + main: "Téléchargement gratuit de NPM" + main_link: "https://www.npmjs.com/package/@groupdocs/groupdocs.viewer" + alt: "Licence" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/nodejs-java" + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + +release: + title: "Version {0} publiée" + notes: "Nouveautés" + downloads: "Téléchargements" + link: "https://releases.groupdocs.com/viewer/nodejs-java/release-notes/latest/" + +code: + title: "Rendre les fichiers PDF en JavaScript" + more: "Plus d'exemples" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Node.js-via-Java" + install: "npm i @groupdocs/groupdocs.viewer" + content: | + ```javascript {style=abap} + // Définir les options HTML de sortie + const viewOptions = HtmlViewOptions.forEmbeddedResources() + + // Instancier la visionneuse + const viewer = new Viewer("resume.pdf") + + // Rendu PDF en HTML avec des ressources intégrées + viewer.view(viewOptions) + viewer.close() + ``` +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer en un coup d'œil" + description: "API pour restituer, afficher, convertir des documents, des diapositives, des diagrammes et de nombreux autres types de documents dans les applications Node.js" + features: + # feature loop + - title: "Visualisez les documents de manière efficace et fiable" + content: "Avec l'API GroupDocs.Viewer, vous pouvez restituer efficacement des documents de tous les formats pris en charge au format HTML, JPEG, PNG et PDF avec des options flexibles et puissantes tout en préservant l'intégrité du contenu et de la structure du document. GroupDocs.Viewer pour Node.js fonctionne sur les plateformes Windows et Linux." + + # feature loop + - title: "Les formats de fichiers et de documents les plus courants sont pris en charge" + content: "Nous prenons en charge le rendu des 180 formats de fichiers et de documents les plus populaires, notamment Word, Excel, PDF, PowerPoint, la famille de formats OpenDocument, les archives, les images raster et vectorielles, les livres électroniques, les langages de programmation et les balises, ainsi que de nombreux autres types de fichiers, y compris les fichiers cryptés. fichiers avec protection par mot de passe." + + # feature loop + - title: "Sortie personnalisable" + content: "GroupDocs.Viewer permet non seulement de restituer le document, mais également de contrôler comment exactement, quelles parties du document doivent être rendues ou maintenant, comment elles doivent être rendues, et d'appliquer différentes transformations à la sortie rendue." + +############################# Platforms ############################ +platforms: + enable: true + title: "Indépendance de la plateforme" + description: "GroupDocs.Viewer pour Node.js prend en charge les systèmes d'exploitation, frameworks et gestionnaires de packages suivants" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "Eclipse" + image: "eclipse" + # platform loop + - title: "IntelliJ" + image: "intellij" + # platform loop + - title: "Windows" + image: "windows" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "NPM" + image: "npm" + +############################# File formats ############################ +formats: + enable: true + title: "Formats de fichiers pris en charge" + description: | + GroupDocs.Viewer pour Node.js via Java prend en charge les opérations avec les [formats de fichiers](https://docs.groupdocs.com/viewer/nodejs-java/supported-document-formats/) suivants. + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument et formats texte + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### Images, graphiques et diagrammes + * **Images rastées:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### Autre + * **la toile:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **Les archives:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **Autre:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "Fonctionnalités de GroupDocs.Viewer" + description: "Rendre, afficher et convertir en toute transparence des documents PDF et Office" + + items: + # feature loop + - icon: "viewhtml" + title: "Afficher les documents en HTML" + content: "Convertissez un document de n'importe quel type en un document HTML avec CSS et SVG, qui peut être affiché dans n'importe quel navigateur Web moderne." + + # feature loop + - icon: "rasterize" + title: "Pixelliser les documents" + content: "Pixellisez n'importe quel format de document pris en charge sur l'image raster, avec un format d'image et une qualité de compression réglables." + + # feature loop + - icon: "sourcecode" + title: "Restituer et mettre en évidence les codes de programmation" + content: "Prise en charge de tous les langages de programmation, de script et de balisage populaires, avec possibilité d'analyser et de mettre en évidence leur syntaxe." + + # feature loop + - icon: "convertpdf" + title: "Convertir en PDF" + content: "Les documents de n'importe quel format pris en charge peuvent être facilement convertis et enregistrés au format PDF avec des options réglables." + + # feature loop + - icon: "transform" + title: "Appliquer des transformations" + content: "Le document de sortie peut être transformé pendant le rendu - les pages peuvent être pivotées et/ou réorganisées et un filigrane de texte peut être placé dessus." + + # feature loop + - icon: "adjustment" + title: "Ajustement de la sortie HTML" + content: "Les documents HTML de sortie, générés par GroupDocs.Viewer, peuvent être réglés très finement: il est permis de les enregistrer dans le flux ou dans un fichier, avec des ressources externes ou intégrées, des rappels, etc." + + # feature loop + - icon: "complex" + title: "Prise en charge de structures de documents complexes" + content: "GroupDocs.Viewer prend en charge non seulement les documents uniques, mais également les fichiers qui contiennent en interne une liste ou une structure hiérarchique de documents, comme des messages électroniques avec pièces jointes, des archives ZIP avec des fichiers internes dans des dossiers, des images TIFF multipages, etc." + + # feature loop + - icon: "optimization" + title: "Options d'optimisation" + content: "GroupDocs.Viewer contient un sous-système de cache réglable, qui peut réduire le temps de chargement en utilisant les versions mises en cache des documents. De plus, un ensemble d'options différentes pour différents formats permet d'exclure du rendu certaines parties ou aspects inutiles des documents (polices, feuilles de calcul masquées, pièces jointes aux e-mails) pour optimiser les performances globales." + + # feature loop + - icon: "passwordprotected" + title: "Prise en charge des documents protégés par mot de passe" + content: "GroupDocs.Viewer permet d'ouvrir les documents cryptés de différents types : PDF, WordProcessing, Spreadsheet, Présentation et autres, en spécifiant un mot de passe dans les options de chargement." + +############################# Code samples ############################ +code_samples: + enable: true + title: "Exemples de codes" + description: "Quelques cas d'utilisation de GroupDocs.Viewer typique pour Node.js via des opérations Java" + items: + # code sample loop + - title: "Rendre DOCX en HTML" + content: | + Les propriétés de la classe `HtmlViewOptions` vous permettent de contrôler le processus de conversion, plus d'informations à ce sujet [ici](https://docs.groupdocs.com/viewer/nodejs-java/rendering-to-html/). Par exemple, vous pouvez intégrer toutes les ressources externes dans le fichier HTML de sortie, réduire le fichier de sortie et l'optimiser pour l'impression. + {{< landing/code title="JavaScript">}} + ```javascript {style=abap} + import { Viewer, HtmlViewOptions } from '@groupdocs/groupdocs.viewer' + + // Définir les options HTML de sortie + const viewOptions = HtmlViewOptions.forEmbeddedResources() + + // Instancier la visionneuse + const viewer = new Viewer("resume.docx") + + // Rendre DOCX en HTML avec des ressources intégrées + viewer.view(viewOptions) + viewer.close() + ``` + {{< /landing/code >}} + # code sample loop + - title: "Exporter PPTX en PDF" + content: | + Créez une instance de classe `PdfViewOptions` et transmettez-la à la méthode `Viewer.view` pour convertir un fichier PowerPoint PPTX en PDF. Les propriétés de la classe `PdfViewOptions` vous permettent de contrôler le processus de conversion. Par exemple, vous pouvez protéger le fichier PDF de sortie, réorganiser ses pages et spécifier la qualité des images du document. Reportez-vous à la [section de documentation suivante](https://docs.groupdocs.com/viewer/nodejs-java/rendering-to-pdf/) pour plus de détails. + {{< landing/code title="JavaScript">}} + ```javascript {style=abap} + import { Viewer, PdfViewOptions } from '@groupdocs/groupdocs.viewer' + + // Définir les options du PDF de sortie + const viewOptions = new PdfViewOptions("presentation.pdf") + + // Instancier la visionneuse + const viewer = new Viewer("presentation.pptx") + + // Exporter PPTX en PDF + viewer.view(viewOptions) + viewer.close() + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "Avis sur les produits GroupDocs" +# description: "Ne vous contentez pas de nous croire sur parole. Découvrez ce que d'autres développeurs disent de nos API" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Excellent service et excellents produits. Ils ont été extrêmement utiles et réactifs pendant le processus de mise en œuvre de GroupDocs.Viewer pour .NET, et ne sauraient les recommander assez." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Après avoir implémenté et utilisé GroupDocs.Viewer pour .NET dans le projet, cela semble très bien fonctionner. J'ai testé avec beaucoup de documents et jusqu'ici tout va bien. Tout ce que j'ai lancé s'affiche bien et est aussi beau que dans une visionneuse PDF ou MS Word." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- diff --git a/content/viewer/nodejs-java/_index.id.md b/content/viewer/nodejs-java/_index.id.md new file mode 100644 index 00000000..5f330ef7 --- /dev/null +++ b/content/viewer/nodejs-java/_index.id.md @@ -0,0 +1,282 @@ +--- +############################# Static ############################ +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: id +product: "Viewer" +product_tag: "viewer" +platform: "Node.js via Java" +platform_tag: "nodejs-java" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + + +############################# Head ############################ +head_title: "API Penampil Dokumen Node.js untuk Gambar & Email PDF Word Excel HTML" +head_description: "Penampil dokumen Node.js & API rendering file. Tambahkan penampil PDF, penampil Word, penampil Excel, penampil gambar, penampil HTML, penampil email dalam aplikasi JavaScript." + +############################# Header ############################ +title: "Node.js API untuk merender & menampilkan Dokumen" +description: "Pustaka Penampil Dokumen untuk mengembangkan aplikasi JavaScript yang secara asli merender, melihat, dan memanipulasi dokumen multi-format yang mendukung 180+ format file." +words: + for: "for" + +actions: + main: "Unduh NPM Gratis" + main_link: "https://www.npmjs.com/package/@groupdocs/groupdocs.viewer" + alt: "Perizinan" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/nodejs-java" + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + +release: + title: "Versi {0} dirilis" + notes: "Lihat apa yang baru" + downloads: "Unduhan" + link: "https://releases.groupdocs.com/viewer/nodejs-java/release-notes/latest/" + +code: + title: "Render file PDF dalam JavaScript" + more: "Lebih banyak contoh" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Node.js-via-Java" + install: "npm i @groupdocs/groupdocs.viewer" + content: | + ```javascript {style=abap} + // Tetapkan opsi HTML keluaran, satu file per halaman + const viewOptions = HtmlViewOptions.forEmbeddedResources() + + // Buat Instansiasi Penampil + const viewer = new Viewer("resume.pdf") + + // Render PDF ke HTML dengan sumber daya tertanam + viewer.view(viewOptions) + viewer.close() + ``` +############################# Overview ############################ +overview: + enable: true + title: "Sekilas tentang GroupDocs.Viewer" + description: "API untuk merender, menampilkan, mengonversi dokumen, slide, diagram, dan banyak jenis dokumen lainnya di aplikasi Node.js" + features: + # feature loop + - title: "Lihat dokumen secara efisien & andal" + content: "Dengan GroupDocs.Viewer API Anda dapat secara efisien merender dokumen dari format apa pun yang didukung ke HTML, JPEG, PNG, dan PDF dengan opsi yang fleksibel dan kuat dengan tetap menjaga integritas konten dan struktur dokumen. GroupDocs.Viewer untuk Node.js berfungsi pada platform Windows dan Linux." + + # feature loop + - title: "Sebagian besar format file dan dokumen populer didukung" + content: "Kami mendukung rendering lebih dari 180 format file dan dokumen paling populer yang mencakup Word, Excel, PDF, PowerPoint, keluarga format OpenDocument, Arsip, gambar Raster dan Vektor, e-Book, bahasa pemrograman dan markup, dan banyak jenis file lainnya, termasuk terenkripsi file dengan perlindungan kata sandi." + + # feature loop + - title: "Keluaran yang dapat disesuaikan" + content: "GroupDocs.Viewer memungkinkan tidak hanya untuk merender dokumen, tetapi juga untuk mengontrol bagaimana tepatnya, bagian dokumen mana yang harus dirender atau sekarang, bagaimana harus dirender, dan untuk menerapkan transformasi berbeda pada keluaran yang dirender." + +############################# Platforms ############################ +platforms: + enable: true + title: "Independensi platform" + description: "GroupDocs.Viewer untuk Node.js mendukung sistem operasi, kerangka kerja, dan manajer paket berikut" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "Eclipse" + image: "eclipse" + # platform loop + - title: "IntelliJ" + image: "intellij" + # platform loop + - title: "Windows" + image: "windows" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "NPM" + image: "npm" + +############################# File formats ############################ +formats: + enable: true + title: "Format file yang didukung" + description: | + GroupDocs.Viewer untuk Node.js melalui Java mendukung operasi dengan [format file](https://docs.groupdocs.com/viewer/nodejs-java/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument dan format teks + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### Gambar, Grafik & Diagram + * **Gambar raster:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### Lainnya + * **jaring:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **Arsip:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **Lainnya:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "Fitur GroupDocs.Viewer" + description: "Render, tampilkan, dan konversi PDF dan Dokumen Office dengan lancar" + + items: + # feature loop + - icon: "viewhtml" + title: "Lihat dokumen dalam HTML" + content: "Ubah dokumen jenis apa pun menjadi dokumen HTML dengan CSS dan SVG, yang dapat ditampilkan di browser web modern mana pun." + + # feature loop + - icon: "rasterize" + title: "Rasterisasi dokumen" + content: "Rasterisasi format dokumen apa pun yang didukung ke gambar raster, dengan format gambar dan kualitas kompresi yang dapat disesuaikan." + + # feature loop + - icon: "sourcecode" + title: "Render dan sorot kode pemrograman" + content: "Dukungan untuk semua bahasa pemrograman, skrip, dan markup populer, dengan kemampuan untuk mengurai dan menyorot sintaksisnya." + + # feature loop + - icon: "convertpdf" + title: "Konversikan ke PDF" + content: "Dokumen format apa pun yang didukung dapat dengan mudah dikonversi dan disimpan ke PDF dengan opsi yang dapat disesuaikan." + + # feature loop + - icon: "transform" + title: "Terapkan transformasi" + content: "Dokumen keluaran dapat diubah selama rendering - halaman dapat diputar dan/atau disusun ulang, dan tanda air teks dapat ditempatkan di atasnya." + + # feature loop + - icon: "adjustment" + title: "Penyesuaian keluaran HTML" + content: "Dokumen HTML keluaran, yang dihasilkan oleh GroupDocs.Viewer, dapat disetel dengan sangat baik: diperbolehkan untuk menyimpan ke aliran atau file, dengan sumber daya eksternal atau tertanam, panggilan balik, dan sebagainya." + + # feature loop + - icon: "complex" + title: "Dukungan struktur dokumen yang kompleks" + content: "GroupDocs.Viewer tidak hanya mendukung satu dokumen, tetapi juga file, yang secara internal berisi daftar atau struktur hierarki dokumen, seperti pesan email dengan lampiran, arsip ZIP dengan file internal di dalam folder, gambar TIFF multi-halaman, dan sebagainya." + + # feature loop + - icon: "optimization" + title: "Opsi pengoptimalan" + content: "GroupDocs.Viewer berisi subsistem cache yang dapat disesuaikan, yang dapat mempercepat waktu pemuatan dengan menggunakan versi dokumen yang di-cache. Juga serangkaian opsi berbeda untuk format berbeda memungkinkan untuk mengecualikan beberapa bagian atau aspek dokumen yang tidak diperlukan dari rendering (font, lembar kerja tersembunyi, lampiran email) untuk mengoptimalkan kinerja keseluruhan" + + # feature loop + - icon: "passwordprotected" + title: "Dukungan dokumen yang dilindungi kata sandi" + content: "GroupDocs.Viewer memungkinkan untuk membuka dokumen terenkripsi dari berbagai jenis: PDF, WordProcessing, Spreadsheet, Presentasi, dan lainnya, dengan menentukan kata sandi dalam opsi pemuatan." + +############################# Code samples ############################ +code_samples: + enable: true + title: "Contoh kode" + description: "Beberapa kasus penggunaan GroupDocs.Viewer khas untuk Node.js melalui operasi Java" + items: + # code sample loop + - title: "Render DOCX ke HTML" + content: | + Properti kelas `HtmlViewOptions` memungkinkan Anda mengontrol proses konversi, lebih lanjut tentang itu [di sini](https://docs.groupdocs.com/viewer/nodejs-java/rendering-to-html/). Misalnya, Anda dapat menyematkan semua sumber daya eksternal dalam file HTML keluaran, memperkecil file keluaran, dan mengoptimalkannya untuk dicetak. + {{< landing/code title="JavaScript">}} + ```javascript {style=abap} + import { Viewer, HtmlViewOptions } from '@groupdocs/groupdocs.viewer' + + // Tetapkan opsi HTML keluaran, satu file per halaman + const viewOptions = HtmlViewOptions.forEmbeddedResources() + + // Buat Instansiasi Penampil + const viewer = new Viewer("resume.docx") + + // Render DOCX ke HTML dengan sumber daya tertanam + viewer.view(viewOptions) + viewer.close() + ``` + {{< /landing/code >}} + # code sample loop + - title: "Ekspor PPTX ke PDF" + content: | + Buat instance kelas `PdfViewOptions` dan teruskan ke metode `Viewer.view` untuk mengonversi file PowerPoint PPTX ke PDF. Properti kelas `PdfViewOptions` memungkinkan Anda mengontrol proses konversi. Misalnya, Anda dapat melindungi file PDF keluaran, menyusun ulang halamannya, dan menentukan kualitas gambar dokumen. Lihat [bagian dokumentasi berikut](https://docs.groupdocs.com/viewer/nodejs-java/rendering-to-pdf/) untuk mengetahui detailnya. + {{< landing/code title="JavaScript">}} + ```javascript {style=abap} + import { Viewer, PdfViewOptions } from '@groupdocs/groupdocs.viewer' + + // Atur opsi keluaran PDF + const viewOptions = new PdfViewOptions("presentation.pdf") + + // Buat Instansiasi Penampil + const viewer = new Viewer("presentation.pptx") + + // Ekspor PPTX ke PDF + viewer.view(viewOptions) + viewer.close() + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "Ulasan produk GroupDocs" +# description: "Jangan hanya percaya kata-kata kami begitu saja. Lihat apa yang dikatakan pengembang lain tentang API kami" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Pelayanan prima dan produk unggulan. Mereka sangat membantu dan responsif selama proses implementasi GroupDocs.Viewer untuk .NET, dan sangat merekomendasikannya." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Setelah mengimplementasikan dan menggunakan GroupDocs.Viewer untuk .NET dalam proyek tersebut tampaknya berfungsi dengan baik. Saya telah menguji dengan banyak dokumen dan sejauh ini bagus. Semua yang saya berikan ditampilkan dengan baik dan terlihat sama bagusnya dengan penampil PDF atau MS Word." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- diff --git a/content/viewer/nodejs-java/_index.it.md b/content/viewer/nodejs-java/_index.it.md new file mode 100644 index 00000000..5e6cef9f --- /dev/null +++ b/content/viewer/nodejs-java/_index.it.md @@ -0,0 +1,282 @@ +--- +############################# Static ############################ +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: it +product: "Viewer" +product_tag: "viewer" +platform: "Node.js via Java" +platform_tag: "nodejs-java" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + + +############################# Head ############################ +head_title: "API del visualizzatore di documenti Node.js per immagini ed e-mail PDF Word Excel HTML" +head_description: "Visualizzatore di documenti Node.js e API di rendering dei file. Aggiungi visualizzatore PDF, visualizzatore Word, visualizzatore Excel, visualizzatore immagini, visualizzatore HTML, visualizzatore e-mail nelle applicazioni JavaScript." + +############################# Header ############################ +title: "API Node.js per eseguire il rendering e visualizzare i documenti" +description: "Libreria Document Viewer per sviluppare applicazioni JavaScript in grado di eseguire il rendering, visualizzare e manipolare in modo nativo documenti multiformato che supportano oltre 180 formati di file." +words: + for: "for" + +actions: + main: "Download gratuito di NPM" + main_link: "https://www.npmjs.com/package/@groupdocs/groupdocs.viewer" + alt: "Licenza" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/nodejs-java" + title: "Pronto per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + +release: + title: "Versione {0} rilasciata" + notes: "Scopri le novità" + downloads: "Download" + link: "https://releases.groupdocs.com/viewer/nodejs-java/release-notes/latest/" + +code: + title: "Rendering di file PDF in JavaScript" + more: "Altri esempi" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Node.js-via-Java" + install: "npm i @groupdocs/groupdocs.viewer" + content: | + ```javascript {style=abap} + // Imposta le opzioni HTML di output, un file per pagina + const viewOptions = HtmlViewOptions.forEmbeddedResources() + + // Visualizzatore di istanze + const viewer = new Viewer("resume.pdf") + + // Renderizza PDF in HTML con risorse incorporate + viewer.view(viewOptions) + viewer.close() + ``` +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer in breve" + description: "API per eseguire il rendering, visualizzare, convertire documenti, diapositive, diagrammi e molti altri tipi di documenti nelle applicazioni Node.js" + features: + # feature loop + - title: "Visualizza i documenti in modo efficiente e affidabile" + content: "Con l'API GroupDocs.Viewer puoi eseguire il rendering efficiente di documenti di qualsiasi formato supportato in HTML, JPEG, PNG e PDF con opzioni flessibili e potenti mantenendo l'integrità del contenuto e della struttura del documento. GroupDocs.Viewer per Node.js funziona su piattaforme Windows e Linux." + + # feature loop + - title: "Sono supportati i formati di file e documenti più diffusi" + content: "Supportiamo il rendering dei 180 formati di file e documenti più diffusi tra cui Word, Excel, PDF, PowerPoint, la famiglia di formati OpenDocument, archivi, immagini raster e vettoriali, e-book, linguaggi di programmazione e markup e molti altri tipi di file, inclusi quelli crittografati file protetti da password." + + # feature loop + - title: "Uscita personalizzabile" + content: "GroupDocs.Viewer consente non solo di eseguire il rendering del documento, ma anche di controllare come esattamente, quali parti del documento dovrebbero essere renderizzate o ora, come dovrebbero essere renderizzate e di applicare diverse trasformazioni all'output renderizzato." + +############################# Platforms ############################ +platforms: + enable: true + title: "Indipendenza dalla piattaforma" + description: "GroupDocs.Viewer per Node.js supporta i seguenti sistemi operativi, framework e gestori di pacchetti" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "Eclipse" + image: "eclipse" + # platform loop + - title: "IntelliJ" + image: "intellij" + # platform loop + - title: "Windows" + image: "windows" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "NPM" + image: "npm" + +############################# File formats ############################ +formats: + enable: true + title: "Formati di file supportati" + description: | + GroupDocs.Viewer per Node.js tramite Java supporta operazioni con i seguenti [formati di file](https://docs.groupdocs.com/viewer/nodejs-java/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument e formati di testo + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### Immagini, grafica e diagrammi + * **Immagini raster:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### Altro + * **ragnatela:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **Archivi:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **Altro:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "Funzionalità di GroupDocs.Viewer" + description: "Esegue il rendering, la visualizzazione e la conversione di documenti PDF e Office senza problemi" + + items: + # feature loop + - icon: "viewhtml" + title: "Visualizza i documenti in HTML" + content: "Converti documenti di qualsiasi tipo in un documento HTML con CSS e SVG, che può essere visualizzato in qualsiasi browser web moderno." + + # feature loop + - icon: "rasterize" + title: "Rasterizzare i documenti" + content: "Rasterizza qualsiasi formato di documento supportabile nell'immagine raster, con formato immagine e qualità di compressione regolabili." + + # feature loop + - icon: "sourcecode" + title: "Restituisci ed evidenzia i codici di programmazione" + content: "Supporto di tutti i linguaggi di programmazione, scripting e markup più diffusi, con capacità di analizzare ed evidenziare la loro sintassi." + + # feature loop + - icon: "convertpdf" + title: "Converti in PDF" + content: "I documenti di qualsiasi formato supportato possono essere facilmente convertiti e salvati nel PDF con opzioni regolabili." + + # feature loop + - icon: "transform" + title: "Applicare trasformazioni" + content: "Il documento di output può essere trasformato durante il rendering: le pagine possono essere ruotate e/o riorganizzate e la filigrana di testo può essere posizionata sopra di esse." + + # feature loop + - icon: "adjustment" + title: "Regolazione dell'output HTML" + content: "I documenti HTML di output, generati da GroupDocs.Viewer, possono essere ottimizzati in modo molto preciso: è consentito salvare nello stream o nel file, con risorse esterne o incorporate, callback e così via." + + # feature loop + - icon: "complex" + title: "Supporto di strutture documentali complesse" + content: "GroupDocs.Viewer supporta non solo i singoli documenti, ma anche i file che contengono internamente un elenco o una struttura gerarchica di documenti, come messaggi di posta elettronica con allegati, archivi ZIP con file interni all'interno di cartelle, immagini TIFF multipagina e così via." + + # feature loop + - icon: "optimization" + title: "Opzioni di ottimizzazione" + content: "GroupDocs.Viewer contiene un sottosistema di cache regolabile, che può ridurre i tempi di caricamento utilizzando le versioni dei documenti memorizzate nella cache. Inoltre una serie di diverse opzioni per diversi formati consente di escludere alcune parti o aspetti non necessari dei documenti dal rendering (caratteri, fogli di lavoro nascosti, allegati e-mail) per ottimizzare le prestazioni complessive" + + # feature loop + - icon: "passwordprotected" + title: "Supporto di documenti protetti da password" + content: "GroupDocs.Viewer consente di aprire documenti crittografati di diversi tipi: PDF, elaborazione testi, fogli di calcolo, presentazioni e altri, specificando una password nelle opzioni di caricamento." + +############################# Code samples ############################ +code_samples: + enable: true + title: "Esempi di codici" + description: "Alcuni casi d'uso tipici di GroupDocs.Viewer per Node.js tramite operazioni Java" + items: + # code sample loop + - title: "Rendere DOCX in HTML" + content: | + Le proprietà della classe `HtmlViewOptions` ti consentono di controllare il processo di conversione, maggiori informazioni [qui](https://docs.groupdocs.com/viewer/nodejs-java/rendering-to-html/). Ad esempio, puoi incorporare tutte le risorse esterne nel file HTML di output, minimizzare il file di output e ottimizzarlo per la stampa. + {{< landing/code title="JavaScript">}} + ```javascript {style=abap} + import { Viewer, HtmlViewOptions } from '@groupdocs/groupdocs.viewer' + + // Imposta le opzioni HTML di output, un file per pagina + const viewOptions = HtmlViewOptions.forEmbeddedResources() + + // Visualizzatore di istanze + const viewer = new Viewer("resume.docx") + + // Renderizza DOCX in HTML con risorse incorporate + viewer.view(viewOptions) + viewer.close() + ``` + {{< /landing/code >}} + # code sample loop + - title: "Esporta PPTX in PDF" + content: | + Crea un'istanza della classe PdfViewOptions e passala al metodo Viewer.view per convertire un file PowerPoint PPTX in PDF. Le proprietà della classe PdfViewOptions ti consentono di controllare il processo di conversione. Ad esempio, puoi proteggere il file PDF di output, riordinarne le pagine e specificare la qualità delle immagini del documento. Fare riferimento alla [sezione della documentazione seguente](https://docs.groupdocs.com/viewer/nodejs-java/rendering-to-pdf/) per i dettagli. + {{< landing/code title="JavaScript">}} + ```javascript {style=abap} + import { Viewer, PdfViewOptions } from '@groupdocs/groupdocs.viewer' + + // Imposta le opzioni PDF di output + const viewOptions = new PdfViewOptions("presentation.pdf") + + // Visualizzatore di istanze + const viewer = new Viewer("presentation.pptx") + + // Esporta PPTX in PDF + viewer.view(viewOptions) + viewer.close() + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "Recensioni dei prodotti GroupDocs" +# description: "Non limitarti a crederci sulla parola. Scopri cosa dicono gli altri sviluppatori sulle nostre API" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Servizio eccellente e prodotti eccellenti. Si sono rivelati estremamente utili e reattivi durante il processo di implementazione di GroupDocs.Viewer per .NET, non posso che consigliarli vivamente." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Dopo aver implementato e utilizzato GroupDocs.Viewer for .NET nel progetto sembra funzionare molto bene. Ho testato con molti documenti e finora tutto bene. Tutto ciò che ho inserito viene visualizzato bene e ha lo stesso aspetto di un visualizzatore PDF o MS Word." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- diff --git a/content/viewer/nodejs-java/_index.ja.md b/content/viewer/nodejs-java/_index.ja.md new file mode 100644 index 00000000..c1dc5852 --- /dev/null +++ b/content/viewer/nodejs-java/_index.ja.md @@ -0,0 +1,282 @@ +--- +############################# Static ############################ +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: "Node.js via Java" +platform_tag: "nodejs-java" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + + +############################# Head ############################ +head_title: "PDF Word Excel HTML 画像と電子メール用の Node.js ドキュメント ビューア API" +head_description: "Node.js ドキュメント ビューアとファイル レンダリング API。 JavaScript アプリケーションに PDF ビューア、Word ビューア、Excel ビューア、画像ビューア、HTML ビューア、電子メール ビューアを追加します。" + +############################# Header ############################ +title: "ドキュメントをレンダリングおよび表示するための Node.js API" +description: "180 以上のファイル形式をサポートするマルチ形式ドキュメントをネイティブにレンダリング、表示、操作する JavaScript アプリケーションを開発するためのドキュメント ビューア ライブラリ。" +words: + for: "for" + +actions: + main: "NPM の無料ダウンロード" + main_link: "https://www.npmjs.com/package/@groupdocs/groupdocs.viewer" + alt: "ライセンス" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/nodejs-java" + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + +release: + title: "{0} がリリースされました" + notes: "新機能を見る" + downloads: "ダウンロード" + link: "https://releases.groupdocs.com/viewer/nodejs-java/release-notes/latest/" + +code: + title: "JavaScript で PDF ファイルをレンダリングする" + more: "他の例" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Node.js-via-Java" + install: "npm i @groupdocs/groupdocs.viewer" + content: | + ```javascript {style=abap} + // 出力 HTML オプションを設定します + const viewOptions = HtmlViewOptions.forEmbeddedResources() + + // ビューアのインスタンス化 + const viewer = new Viewer("resume.pdf") + + // 埋め込みリソースを使用して PDF を HTML + viewer.view(viewOptions) + viewer.close() + ``` +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer の概要" + description: "Node.js アプリケーションでドキュメント、スライド、図、その他多くのドキュメント タイプをレンダリング、表示、変換するための API" + features: + # feature loop + - title: "ドキュメントを効率的かつ確実に表示する" + content: "GroupDocs.Viewer API を使用すると、コンテンツとドキュメント構造の整合性を維持しながら、柔軟で強力なオプションを使用して、サポート可能な形式のドキュメントを HTML、JPEG、PNG、PDF に効率的にレンダリングできます。 Node.js 用の GroupDocs.Viewer は、Windows および Linux プラットフォームで動作します。" + + # feature loop + - title: "最も一般的なファイルおよびドキュメント形式がサポートされています" + content: "Word、Excel、PDF、PowerPoint、OpenDocument 形式ファミリー、アーカイブ、ラスター画像とベクター画像、電子書籍、プログラミング言語とマークアップ、および暗号化されたファイルを含むその他の多くのファイル タイプを含む、180 を超える最も一般的なファイルおよびドキュメント形式のレンダリングをサポートしています。パスワードで保護されたファイル。" + + # feature loop + - title: "カスタマイズ可能な出力" + content: "GroupDocs.Viewer を使用すると、ドキュメントをレンダリングするだけでなく、ドキュメントのどの部分をレンダリングするか、現時点でどのようにレンダリングするかを正確に制御し、レンダリングされた出力にさまざまな変換を適用することもできます。" + +############################# Platforms ############################ +platforms: + enable: true + title: "プラットフォームの独立性" + description: "Node.js 用 GroupDocs.Viewer は、次のオペレーティング システム、フレームワーク、パッケージ マネージャーをサポートしています。" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "Eclipse" + image: "eclipse" + # platform loop + - title: "IntelliJ" + image: "intellij" + # platform loop + - title: "Windows" + image: "windows" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "NPM" + image: "npm" + +############################# File formats ############################ +formats: + enable: true + title: "サポートされているファイル形式" + description: | + Java 経由の Node.js 用 GroupDocs.Viewer は、次の [ファイル形式](https://docs.groupdocs.com/viewer/nodejs-java/supported-document-formats/) での操作をサポートします。 + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office、OpenDocument、およびテキスト形式 + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### 画像、グラフィック、図表 + * **ラスター画像:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### 他の + * **ウェブ:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **アーカイブ:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **他の:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "GroupDocs.Viewer の機能" + description: "PDF および Office ドキュメントをシームレスにレンダリング、表示、変換" + + items: + # feature loop + - icon: "viewhtml" + title: "HTML でドキュメントを表示する" + content: "CSS と SVG を使用して、あらゆる種類のドキュメントを HTML ドキュメントに変換し、最新の Web ブラウザで表示できます。" + + # feature loop + - icon: "rasterize" + title: "ドキュメントをラスタライズする" + content: "サポート可能なドキュメント形式をラスター画像にラスター化し、画像形式と圧縮品質を調整できます。" + + # feature loop + - icon: "sourcecode" + title: "プログラミング コードのレンダリングとハイライト表示" + content: "すべての一般的なプログラミング、スクリプト、マークアップ言語をサポートし、構文を解析して強調表示する機能を備えています。" + + # feature loop + - icon: "convertpdf" + title: "PDFに変換" + content: "サポート可能な形式のドキュメントは、調整可能なオプションを使用して簡単に PDF に変換して保存できます。" + + # feature loop + - icon: "transform" + title: "変換を適用する" + content: "出力ドキュメントはレンダリング中に変換できます。ページは回転および/または再配置でき、テキストの透かしをその上に配置できます。" + + # feature loop + - icon: "adjustment" + title: "HTML出力調整" + content: "GroupDocs.Viewer によって生成される出力 HTML ドキュメントは、非常に細かく調整できます。外部リソースまたは埋め込みリソース、コールバックなどを使用して、ストリームまたはファイルに保存できます。" + + # feature loop + - icon: "complex" + title: "複雑な文書構造のサポート" + content: "GroupDocs.Viewer は、単一のドキュメントだけでなく、添付ファイル付きの電子メール メッセージ、フォルダー内の内部ファイルを含む ZIP アーカイブ、複数ページの TIFF 画像など、ドキュメントのリストまたは階層構造を内部に含むファイルもサポートします。" + + # feature loop + - icon: "optimization" + title: "最適化オプション" + content: "GroupDocs.Viewer には、ドキュメントのキャッシュされたバージョンを使用することで読み込み時間を短縮できる、調整可能なキャッシュ サブシステムが含まれています。また、さまざまな形式に対応するさまざまなオプションのセットにより、ドキュメントの一部の不必要な部分や側面 (フォント、非表示のワークシート、電子メールの添付ファイル) をレンダリングから除外して、全体的なパフォーマンスを最適化することができます。" + + # feature loop + - icon: "passwordprotected" + title: "パスワードで保護されたドキュメントのサポート" + content: "GroupDocs.Viewer を使用すると、読み込みオプションでパスワードを指定することで、PDF、WordProcessing、スプレッドシート、プレゼンテーションなど、さまざまな種類の暗号化されたドキュメントを開くことができます。" + +############################# Code samples ############################ +code_samples: + enable: true + title: "コードサンプル" + description: "Java 操作による Node.js 用の典型的な GroupDocs.Viewer の使用例" + items: + # code sample loop + - title: "DOCX を HTML にレンダリングする" + content: | + `HtmlViewOptions` クラス プロパティを使用すると、変換プロセスを制御できます。詳細については、[こちら](https://docs.groupdocs.com/viewer/nodejs-java/rendering-to-html/) を参照してください。 たとえば、すべての外部リソースを出力 HTML ファイルに埋め込み、出力ファイルを縮小して、印刷用に最適化することができます。 + {{< landing/code title="JavaScript">}} + ```javascript {style=abap} + import { Viewer, HtmlViewOptions } from '@groupdocs/groupdocs.viewer' + + // 出力 HTML オプションを設定します + const viewOptions = HtmlViewOptions.forEmbeddedResources() + + // ビューアのインスタンス化 + const viewer = new Viewer("resume.docx") + + // 埋め込みリソースを使用して DOCX を HTML にレンダリングします + viewer.view(viewOptions) + viewer.close() + ``` + {{< /landing/code >}} + # code sample loop + - title: "PPTXをPDFにエクスポート" + content: | + `PdfViewOptions` クラス インスタンスを作成し、それを `Viewer.view` メソッドに渡して、PowerPoint PPTX ファイルを PDF に変換します。 `PdfViewOptions` クラス プロパティを使用すると、変換プロセスを制御できます。たとえば、出力 PDF ファイルを保護したり、ページの順序を変更したり、ドキュメントの画像の品質を指定したりできます。詳細については、[次のドキュメント セクション](https://docs.groupdocs.com/viewer/nodejs-java/rendering-to-pdf/) を参照してください。 + {{< landing/code title="JavaScript">}} + ```javascript {style=abap} + import { Viewer, PdfViewOptions } from '@groupdocs/groupdocs.viewer' + + // 出力 PDF オプションを設定する + const viewOptions = new PdfViewOptions("presentation.pdf") + + // ビューアのインスタンス化 + const viewer = new Viewer("presentation.pptx") + + // PPTXをPDFにエクスポート + viewer.view(viewOptions) + viewer.close() + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "GroupDocs 製品のレビュー" +# description: "私たちの言葉をそのまま鵜呑みにしないでください。他の開発者の API についての意見をご覧ください" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "優れたサービスと優れた製品。これらは、GroupDocs.Viewer for .NET の実装プロセス中に非常に役に立ち、迅速に対応してくれましたが、あまりお勧めできません。" +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "GroupDocs.Viewer for .NET をプロジェクトに実装して使用した後、非常にうまく機能しているように見えます。多くのドキュメントを使用してテストしましたが、これまでのところ良好です。私が投げたものはすべてうまくレンダリングされ、PDF ビューアーや MS Word と同じくらい見栄えがよくなります。" +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- diff --git a/content/viewer/nodejs-java/_index.ko.md b/content/viewer/nodejs-java/_index.ko.md new file mode 100644 index 00000000..1c8b791e --- /dev/null +++ b/content/viewer/nodejs-java/_index.ko.md @@ -0,0 +1,282 @@ +--- +############################# Static ############################ +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: "Node.js via Java" +platform_tag: "nodejs-java" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + + +############################# Head ############################ +head_title: "PDF Word Excel HTML 이미지 및 이메일용 Node.js 문서 뷰어 API" +head_description: "Node.js 문서 뷰어 및 파일 렌더링 API. JavaScript 애플리케이션에 PDF 뷰어, Word 뷰어, Excel 뷰어, 이미지 뷰어, HTML 뷰어, 이메일 뷰어를 추가합니다." + +############################# Header ############################ +title: "문서를 렌더링하고 표시하는 Node.js API" +description: "180개 이상의 파일 형식을 지원하는 다중 형식 문서를 기본적으로 렌더링, 보기 및 조작하는 JavaScript 애플리케이션을 개발하기 위한 문서 뷰어 라이브러리입니다." +words: + for: "for" + +actions: + main: "무료 NPM 다운로드" + main_link: "https://www.npmjs.com/package/@groupdocs/groupdocs.viewer" + alt: "라이선스" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/nodejs-java" + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + +release: + title: "버전 {0} 출시됨" + notes: "새로운 소식 보기" + downloads: "다운로드" + link: "https://releases.groupdocs.com/viewer/nodejs-java/release-notes/latest/" + +code: + title: "JavaScript로 PDF 파일 렌더링" + more: "더 많은 예시" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Node.js-via-Java" + install: "npm i @groupdocs/groupdocs.viewer" + content: | + ```javascript {style=abap} + // 출력 HTML 옵션 설정(페이지당 파일 1개) + const viewOptions = HtmlViewOptions.forEmbeddedResources() + + // 인스턴스화 뷰어 + const viewer = new Viewer("resume.pdf") + + // 포함된 리소스를 사용하여 PDF를 HTML로 렌더링 + viewer.view(viewOptions) + viewer.close() + ``` +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer 개요" + description: "Node.js 애플리케이션에서 문서, 슬라이드, 다이어그램 및 기타 다양한 문서 유형을 렌더링, 표시, 변환하는 API" + features: + # feature loop + - title: "효율적이고 안정적으로 문서 보기" + content: "GroupDocs.Viewer API를 사용하면 콘텐츠와 문서 구조 무결성을 유지하면서 유연하고 강력한 옵션을 사용하여 지원 가능한 모든 형식의 문서를 HTML, JPEG, PNG 및 PDF로 효율적으로 렌더링할 수 있습니다. Node.js용 GroupDocs.Viewer는 Windows 및 Linux 플랫폼에서 작동합니다." + + # feature loop + - title: "가장 널리 사용되는 파일 및 문서 형식이 지원됩니다." + content: "우리는 Word, Excel, PDF, PowerPoint, OpenDocument 형식 제품군, 아카이브, 래스터 및 벡터 이미지, 전자책, 프로그래밍 언어 및 마크업, 암호화된 파일을 포함한 기타 다양한 파일 형식을 포함하는 180개 이상의 가장 널리 사용되는 파일 및 문서 형식의 렌더링을 지원합니다. 비밀번호로 보호된 파일." + + # feature loop + - title: "맞춤형 출력" + content: "GroupDocs.Viewer를 사용하면 문서를 렌더링할 수 있을 뿐만 아니라 문서의 어느 부분을 정확히 렌더링해야 하는지, 렌더링해야 하는지, 어떻게 렌더링해야 하는지 제어하고 렌더링된 출력에 다양한 변환을 적용할 수 있습니다." + +############################# Platforms ############################ +platforms: + enable: true + title: "플랫폼 독립성" + description: "Node.js용 GroupDocs.Viewer는 다음 운영 체제, 프레임워크 및 패키지 관리자를 지원합니다." + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "Eclipse" + image: "eclipse" + # platform loop + - title: "IntelliJ" + image: "intellij" + # platform loop + - title: "Windows" + image: "windows" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "NPM" + image: "npm" + +############################# File formats ############################ +formats: + enable: true + title: "지원되는 파일 형식" + description: | + Java를 통한 Node.js용 GroupDocs.Viewer는 다음 [파일 형식](https://docs.groupdocs.com/viewer/nodejs-java/supported-document-formats/)을 사용한 작업을 지원합니다. + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument 및 텍스트 형식 + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### 이미지, 그래픽 및 다이어그램 + * **래스터 이미지:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### 다른 + * **편물:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **아카이브:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **다른:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "GroupDocs.Viewer 기능" + description: "PDF 및 Office 문서를 원활하게 렌더링, 표시 및 변환합니다." + + items: + # feature loop + - icon: "viewhtml" + title: "HTML로 문서 보기" + content: "모든 유형의 문서를 CSS 및 SVG를 사용하여 최신 웹 브라우저에서 표시할 수 있는 HTML 문서로 변환합니다." + + # feature loop + - icon: "rasterize" + title: "문서 래스터화" + content: "조정 가능한 이미지 형식과 압축 품질을 사용하여 지원 가능한 모든 문서 형식을 래스터 이미지로 래스터화합니다." + + # feature loop + - icon: "sourcecode" + title: "프로그래밍 코드 렌더링 및 강조 표시" + content: "구문을 분석하고 강조 표시하는 기능을 통해 널리 사용되는 모든 프로그래밍, 스크립팅 및 마크업 언어를 지원합니다." + + # feature loop + - icon: "convertpdf" + title: "PDF로 변환" + content: "지원되는 모든 형식의 문서는 조정 가능한 옵션을 사용하여 쉽게 변환하고 PDF로 저장할 수 있습니다." + + # feature loop + - icon: "transform" + title: "변환 적용" + content: "출력 문서는 렌더링 중에 변형될 수 있습니다. 페이지를 회전 및/또는 재배열할 수 있으며 텍스트 워터마크가 페이지 위에 배치될 수 있습니다." + + # feature loop + - icon: "adjustment" + title: "HTML 출력 조정" + content: "GroupDocs.Viewer에 의해 생성된 출력 HTML 문서는 매우 세밀하게 조정될 수 있습니다. 외부 또는 내장 리소스, 콜백 등과 함께 스트림이나 파일에 저장할 수 있습니다." + + # feature loop + - icon: "complex" + title: "복잡한 문서 구조 지원" + content: "GroupDocs.Viewer는 단일 문서뿐만 아니라 첨부 파일이 있는 이메일 메시지, 폴더 내에 내부 파일이 있는 ZIP 아카이브, 다중 페이지 TIFF 이미지 등과 같은 문서의 목록 또는 계층 구조를 내부적으로 포함하는 파일도 지원합니다." + + # feature loop + - icon: "optimization" + title: "최적화 옵션" + content: "GroupDocs.Viewer에는 캐시된 문서 버전을 사용하여 로딩 시간을 단축할 수 있는 조정 가능한 캐시 하위 시스템이 포함되어 있습니다. 또한 다양한 형식에 대한 다양한 옵션 세트를 사용하면 렌더링에서 문서의 불필요한 부분이나 측면(글꼴, 숨겨진 워크시트, 이메일 첨부 파일)을 제외하여 전반적인 성능을 최적화할 수 있습니다." + + # feature loop + - icon: "passwordprotected" + title: "비밀번호로 보호된 문서 지원" + content: "GroupDocs.Viewer를 사용하면 로딩 옵션에 비밀번호를 지정하여 PDF, 워드프로세싱, 스프레드시트, 프리젠테이션 등 다양한 유형의 암호화된 문서를 열 수 있습니다." + +############################# Code samples ############################ +code_samples: + enable: true + title: "코드 샘플" + description: "Java 작업을 통한 Node.js용 일반적인 GroupDocs.Viewer의 일부 사용 사례" + items: + # code sample loop + - title: "DOCX를 HTML로 렌더링" + content: | + `HtmlViewOptions` 클래스 속성을 사용하면 변환 프로세스를 제어할 수 있으며, 이에 대한 자세한 내용은 [여기](https://docs.groupdocs.com/viewer/nodejs-java/rendering-to-html/)에서 확인하세요. 예를 들어 출력 HTML 파일에 모든 외부 리소스를 포함하고, 출력 파일을 축소하고, 인쇄용으로 최적화할 수 있습니다. + {{< landing/code title="JavaScript">}} + ```javascript {style=abap} + import { Viewer, HtmlViewOptions } from '@groupdocs/groupdocs.viewer' + + // 출력 HTML 옵션 설정(페이지당 파일 1개) + const viewOptions = HtmlViewOptions.forEmbeddedResources() + + // 인스턴스화 뷰어 + const viewer = new Viewer("resume.docx") + + // 포함된 리소스를 사용하여 DOCX를 HTML로 렌더링 + viewer.view(viewOptions) + viewer.close() + ``` + {{< /landing/code >}} + # code sample loop + - title: "PPTX를 PDF로 내보내기" + content: | + 'PdfViewOptions' 클래스 인스턴스를 생성하고 이를 'Viewer.view' 메서드에 전달하여 PowerPoint PPTX 파일을 PDF로 변환합니다. `PdfViewOptions` 클래스 속성을 사용하면 변환 프로세스를 제어할 수 있습니다. 예를 들어, 출력 PDF 파일을 보호하고, 페이지 순서를 변경하고, 문서 이미지의 품질을 지정할 수 있습니다. 자세한 내용은 [다음 문서 섹션](https://docs.groupdocs.com/viewer/nodejs-java/rendering-to-pdf/)을 참조하세요. + {{< landing/code title="JavaScript">}} + ```javascript {style=abap} + import { Viewer, PdfViewOptions } from '@groupdocs/groupdocs.viewer' + + // 출력 PDF 옵션 설정 + const viewOptions = new PdfViewOptions("presentation.pdf") + + // 인스턴스화 뷰어 + const viewer = new Viewer("presentation.pptx") + + // PPTX를 PDF로 내보내기 + viewer.view(viewOptions) + viewer.close() + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "GroupDocs 제품 리뷰" +# description: "우리의 말만 받아들이지 마십시오. 다른 개발자가 우리 API에 대해 어떻게 말하는지 확인하세요." + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "우수한 서비스와 우수한 제품. .NET용 GroupDocs.Viewer 구현 프로세스 동안 매우 도움이 되고 응답이 빨랐기 때문에 충분히 추천할 수는 없습니다." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "프로젝트에서 .NET용 GroupDocs.Viewer를 구현하고 사용한 후에는 매우 잘 작동하는 것으로 보입니다. 나는 많은 문서를 가지고 테스트해 보았는데 지금까지는 아주 좋았다. 내가 던진 모든 것은 PDF 뷰어나 MS Word에서와 마찬가지로 멋지게 렌더링되고 보기에도 좋습니다." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- diff --git a/content/viewer/nodejs-java/_index.pt.md b/content/viewer/nodejs-java/_index.pt.md new file mode 100644 index 00000000..49a8669f --- /dev/null +++ b/content/viewer/nodejs-java/_index.pt.md @@ -0,0 +1,282 @@ +--- +############################# Static ############################ +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: "Node.js via Java" +platform_tag: "nodejs-java" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + + +############################# Head ############################ +head_title: "API do visualizador de documentos Node.js para imagens e e-mails HTML do Word Excel em PDF" +head_description: "Visualizador de documentos Node.js e API de renderização de arquivos. Adicione visualizador de PDF, visualizador de Word, visualizador de Excel, visualizador de imagens, visualizador de HTML, visualizador de e-mail em aplicativos JavaScript." + +############################# Header ############################ +title: "API Node.js para renderizar e exibir documentos" +description: "Biblioteca do Document Viewer para desenvolver aplicativos JavaScript que renderizam, visualizam e manipulam nativamente documentos multiformatos que suportam mais de 180 formatos de arquivo." +words: + for: "for" + +actions: + main: "Baixar NPM grátis" + main_link: "https://www.npmjs.com/package/@groupdocs/groupdocs.viewer" + alt: "Licenciamento" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/nodejs-java" + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + +release: + title: "Versão {0} lançada" + notes: "Veja o que é novo" + downloads: "Transferências" + link: "https://releases.groupdocs.com/viewer/nodejs-java/release-notes/latest/" + +code: + title: "Renderizar arquivos PDF em JavaScript" + more: "Mais exemplos" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Node.js-via-Java" + install: "npm i @groupdocs/groupdocs.viewer" + content: | + ```javascript {style=abap} + // Defina opções de saída HTML, um arquivo por página + const viewOptions = HtmlViewOptions.forEmbeddedResources() + + // Instanciar visualizador + const viewer = new Viewer("resume.pdf") + + // Renderize PDF em HTML com recursos incorporados + viewer.view(viewOptions) + viewer.close() + ``` +############################# Overview ############################ +overview: + enable: true + title: "Visão geral do GroupDocs.Viewer" + description: "API para renderizar, exibir, converter documentos, slides, diagramas e muitos outros tipos de documentos em aplicativos Node.js." + features: + # feature loop + - title: "Visualize documentos de forma eficiente e confiável" + content: "Com a API GroupDocs.Viewer, você pode renderizar com eficiência documentos de qualquer formato compatível para HTML, JPEG, PNG e PDF com opções flexíveis e poderosas, mantendo a integridade do conteúdo e da estrutura do documento. GroupDocs.Viewer para Node.js funciona em plataformas Windows e Linux." + + # feature loop + - title: "Os formatos de arquivos e documentos mais populares são suportados" + content: "Oferecemos suporte à renderização dos 180 formatos de arquivos e documentos mais populares, que incluem Word, Excel, PDF, PowerPoint, família de formatos OpenDocument, arquivos, imagens raster e vetoriais, e-books, linguagens de programação e marcações e muitos outros tipos de arquivos, incluindo arquivos criptografados. arquivos com proteção por senha." + + # feature loop + - title: "Saída personalizável" + content: "GroupDocs.Viewer permite não apenas renderizar o documento, mas também controlar como exatamente, quais partes do documento devem ser renderizadas ou agora, como devem ser renderizadas e aplicar diferentes transformações à saída renderizada." + +############################# Platforms ############################ +platforms: + enable: true + title: "Independência de plataforma" + description: "GroupDocs.Viewer para Node.js oferece suporte aos seguintes sistemas operacionais, estruturas e gerenciadores de pacotes" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "Eclipse" + image: "eclipse" + # platform loop + - title: "IntelliJ" + image: "intellij" + # platform loop + - title: "Windows" + image: "windows" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "NPM" + image: "npm" + +############################# File formats ############################ +formats: + enable: true + title: "Formatos de arquivo suportados" + description: | + GroupDocs.Viewer para Node.js via Java oferece suporte a operações com os seguintes [formatos de arquivo](https://docs.groupdocs.com/viewer/nodejs-java/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument e formatos de texto + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### Imagens, gráficos e diagramas + * **Imagens rasterizadas:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### Outro + * **Rede:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **Arquivos:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **Outro:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "Recursos do GroupDocs.Viewer" + description: "Renderize, exiba e converta perfeitamente documentos PDF e Office" + + items: + # feature loop + - icon: "viewhtml" + title: "Ver documentos em HTML" + content: "Converta documentos de qualquer tipo em um documento HTML com CSS e SVG, que pode ser exibido em qualquer navegador moderno." + + # feature loop + - icon: "rasterize" + title: "Rasterizar documentos" + content: "Rasterize qualquer formato de documento compatível para a imagem rasterizada, com formato de imagem e qualidade de compactação ajustáveis." + + # feature loop + - icon: "sourcecode" + title: "Renderizar e destacar códigos de programação" + content: "Suporte para todas as linguagens populares de programação, script e marcação, com capacidade de analisar e destacar sua sintaxe." + + # feature loop + - icon: "convertpdf" + title: "Converter para PDF" + content: "Documentos de qualquer formato compatível podem ser facilmente convertidos e salvos em PDF com opções ajustáveis." + + # feature loop + - icon: "transform" + title: "Aplicar transformações" + content: "O documento de saída pode ser transformado durante a renderização - as páginas podem ser giradas e/ou reorganizadas e uma marca d’água de texto pode ser colocada sobre elas." + + # feature loop + - icon: "adjustment" + title: "Ajuste de saída HTML" + content: "Os documentos HTML de saída, gerados pelo GroupDocs.Viewer, podem ser ajustados com muita precisão: é permitido salvar no fluxo ou arquivo, com recursos externos ou incorporados, retornos de chamada e assim por diante." + + # feature loop + - icon: "complex" + title: "Suporte de estruturas de documentos complexas" + content: "GroupDocs.Viewer suporta não apenas documentos únicos, mas também arquivos, que contêm internamente uma lista ou estrutura hierárquica de documentos, como mensagens de e-mail com anexos, arquivos ZIP com arquivos internos dentro de pastas, imagens TIFF de várias páginas e assim por diante." + + # feature loop + - icon: "optimization" + title: "Opções de otimização" + content: "GroupDocs.Viewer contém um subsistema de cache ajustável, que pode acelerar o tempo de carregamento usando as versões em cache dos documentos. Além disso, um conjunto de diferentes opções para diferentes formatos permite excluir algumas partes ou aspectos desnecessários dos documentos da renderização (fontes, planilhas ocultas, anexos de e-mail) para otimizar o desempenho geral." + + # feature loop + - icon: "passwordprotected" + title: "Suporte de documentos protegidos por senha" + content: "GroupDocs.Viewer permite abrir documentos criptografados de diversos tipos: PDF, WordProcessing, Planilha, Apresentação e outros, especificando uma senha nas opções de carregamento." + +############################# Code samples ############################ +code_samples: + enable: true + title: "Amostras de código" + description: "Alguns casos de uso de GroupDocs.Viewer típico para Node.js por meio de operações Java" + items: + # code sample loop + - title: "Renderizar DOCX para HTML" + content: | + As propriedades da classe `HtmlViewOptions` permitem que você controle o processo de conversão, mais sobre isso [aqui](https://docs.groupdocs.com/viewer/nodejs-java/rendering-to-html/). Por exemplo, você pode incorporar todos os recursos externos no arquivo HTML de saída, reduzir o arquivo de saída e otimizá-lo para impressão. + {{< landing/code title="JavaScript">}} + ```javascript {style=abap} + import { Viewer, HtmlViewOptions } from '@groupdocs/groupdocs.viewer' + + // Defina opções de saída HTML, um arquivo por página + const viewOptions = HtmlViewOptions.forEmbeddedResources() + + // Instanciar visualizador + const viewer = new Viewer("resume.docx") + + // Renderize DOCX para HTML com recursos incorporados + viewer.view(viewOptions) + viewer.close() + ``` + {{< /landing/code >}} + # code sample loop + - title: "Exportar PPTX para PDF" + content: | + Crie uma instância da classe `PdfViewOptions` e passe-a para o método `Viewer.view` para converter um arquivo PowerPoint PPTX em PDF. As propriedades da classe `PdfViewOptions` permitem controlar o processo de conversão. Por exemplo, você pode proteger o arquivo PDF de saída, reordenar suas páginas e especificar a qualidade das imagens do documento. Consulte a [seção de documentação a seguir](https://docs.groupdocs.com/viewer/nodejs-java/rendering-to-pdf/) para obter detalhes. + {{< landing/code title="JavaScript">}} + ```javascript {style=abap} + import { Viewer, PdfViewOptions } from '@groupdocs/groupdocs.viewer' + + // Definir opções de saída de PDF + const viewOptions = new PdfViewOptions("presentation.pdf") + + // Instanciar visualizador + const viewer = new Viewer("presentation.pptx") + + // Exportar PPTX para PDF + viewer.view(viewOptions) + viewer.close() + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "Avaliações de produtos GroupDocs" +# description: "Não acredite apenas na nossa palavra. Veja o que outros desenvolvedores dizem sobre nossas APIs" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Excelente atendimento e excelentes produtos. Eles foram extremamente úteis e receptivos durante o processo de implementação do GroupDocs.Viewer para .NET, não posso recomendá-los o suficiente." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Depois de implementar e usar o GroupDocs.Viewer for .NET no projeto, parece estar funcionando muito bem. Eu testei com muitos documentos e até agora tudo bem. Tudo o que joguei nele é renderizado perfeitamente e parece tão bom quanto em um visualizador de PDF ou MS Word." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- diff --git a/content/viewer/nodejs-java/_index.ru.md b/content/viewer/nodejs-java/_index.ru.md new file mode 100644 index 00000000..1e78d9bd --- /dev/null +++ b/content/viewer/nodejs-java/_index.ru.md @@ -0,0 +1,282 @@ +--- +############################# Static ############################ +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: "Node.js via Java" +platform_tag: "nodejs-java" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + + +############################# Head ############################ +head_title: "API просмотра документов Node.js для изображений PDF Word Excel HTML и электронных писем" +head_description: "Средство просмотра документов Node.js и API рендеринга файлов. Добавьте программу просмотра PDF, программу просмотра Word, программу просмотра Excel, программу просмотра изображений, программу просмотра HTML, программу просмотра электронной почты в приложениях JavaScript." + +############################# Header ############################ +title: "Node.js API для рендеринга и отображения документов" +description: "Библиотека средства просмотра документов для разработки приложений JavaScript, которые естественным образом отображают, просматривают и манипулируют многоформатными документами, поддерживающими более 180 форматов файлов." +words: + for: "for" + +actions: + main: "Бесплатная загрузка НПМ" + main_link: "https://www.npmjs.com/package/@groupdocs/groupdocs.viewer" + alt: "Лицензирование" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/nodejs-java" + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + +release: + title: "Версия {0} выпущена" + notes: "Что нового" + downloads: "Загрузки" + link: "https://releases.groupdocs.com/viewer/nodejs-java/release-notes/latest/" + +code: + title: "Рендеринг PDF-файлов в JavaScript" + more: "Больше примеров" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Node.js-via-Java" + install: "npm i @groupdocs/groupdocs.viewer" + content: | + ```javascript {style=abap} + // Установите параметры вывода HTML + const viewOptions = HtmlViewOptions.forEmbeddedResources() + + // Создать экземпляр средства просмотра + const viewer = new Viewer("resume.pdf") + + // Преобразование PDF в HTML + viewer.view(viewOptions) + viewer.close() + ``` +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer: краткий обзор" + description: "API для рендеринга, отображения и преобразования документов, слайдов, диаграмм и многих других типов документов в приложениях Node.js." + features: + # feature loop + - title: "Просматривайте документы эффективно и надежно" + content: "С помощью API GroupDocs.Viewer вы можете эффективно отображать документы любых поддерживаемых форматов в HTML, JPEG, PNG и PDF с помощью гибких и мощных функций, сохраняя при этом целостность содержимого и структуры документа. GroupDocs.Viewer для Node.js работает на платформах Windows и Linux." + + # feature loop + - title: "Поддерживаются большинство популярных форматов файлов и документов." + content: "Мы поддерживаем рендеринг более 180 наиболее популярных форматов файлов и документов, включая Word, Excel, PDF, PowerPoint, семейство форматов OpenDocument, архивы, растровые и векторные изображения, электронные книги, языки программирования и разметки, а также многие другие типы файлов, включая зашифрованные. файлы с защитой паролем." + + # feature loop + - title: "Настраиваемый вывод" + content: "GroupDocs.Viewer позволяет не только визуализировать документ, но и контролировать, как именно, какие части документа должны быть визуализированы или сейчас, как они должны отображаться, а также применять различные преобразования к визуализированному выводу." + +############################# Platforms ############################ +platforms: + enable: true + title: "Независимость от платформы" + description: "GroupDocs.Viewer для Node.js поддерживает следующие операционные системы, платформы и менеджеры пакетов." + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "Eclipse" + image: "eclipse" + # platform loop + - title: "IntelliJ" + image: "intellij" + # platform loop + - title: "Windows" + image: "windows" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "NPM" + image: "npm" + +############################# File formats ############################ +formats: + enable: true + title: "Поддерживаемые форматы файлов" + description: | + GroupDocs.Viewer для Node.js через Java поддерживает операции со следующими [форматами файлов](https://docs.groupdocs.com/viewer/nodejs-java/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument и текстовые форматы + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### Изображения, графика и диаграммы + * **Растровые изображения:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### Другой + * **Интернет:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **Архивы:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **Другой:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "Возможности GroupDocs.Viewer" + description: "Легко визуализируйте, отображайте и конвертируйте документы PDF и Office." + + items: + # feature loop + - icon: "viewhtml" + title: "Просмотр документов в формате HTML" + content: "Конвертируйте документ любого типа в документ HTML с помощью CSS и SVG, который можно отобразить в любом современном веб-браузере." + + # feature loop + - icon: "rasterize" + title: "Растеризация документов" + content: "Преобразуйте любой поддерживаемый формат документа в растровое изображение с настраиваемым форматом изображения и качеством сжатия." + + # feature loop + - icon: "sourcecode" + title: "Рендеринг и выделение программных кодов" + content: "Поддержка всех популярных языков программирования, сценариев и разметки с возможностью анализа и выделения их синтаксиса." + + # feature loop + - icon: "convertpdf" + title: "Конвертировать в PDF" + content: "Документ любого поддерживаемого формата можно легко преобразовать и сохранить в PDF с настраиваемыми параметрами." + + # feature loop + - icon: "transform" + title: "Применить преобразования" + content: "Выходной документ можно трансформировать во время рендеринга — страницы можно поворачивать и/или переставлять, а поверх них можно размещать текстовый водяной знак." + + # feature loop + - icon: "adjustment" + title: "Настройка вывода HTML" + content: "Выходные HTML-документы, генерируемые GroupDocs.Viewer, можно очень тонко настроить: разрешено сохранение в поток или файл, с внешними или встроенными ресурсами, обратными вызовами и так далее." + + # feature loop + - icon: "complex" + title: "Поддержка сложных структур документов" + content: "GroupDocs.Viewer поддерживает не только отдельные документы, но и файлы, которые внутри содержат список или иерархическую структуру документов, например, сообщения электронной почты с вложениями, ZIP-архивы с внутренними файлами в папках, многостраничные изображения TIFF и т. д." + + # feature loop + - icon: "optimization" + title: "Варианты оптимизации" + content: "GroupDocs.Viewer содержит настраиваемую подсистему кэширования, которая может сократить время загрузки за счет использования кэшированных версий документов. Также набор различных опций для разных форматов позволяет исключить из рендеринга некоторые ненужные части или аспекты документов (шрифты, скрытые листы, вложения электронной почты) для оптимизации общей производительности." + + # feature loop + - icon: "passwordprotected" + title: "Поддержка документов, защищенных паролем" + content: "GroupDocs.Viewer позволяет открывать зашифрованные документы разных типов: PDF, WordProcessing, Spreadsheet, Presentation и другие, указав пароль в параметрах загрузки." + +############################# Code samples ############################ +code_samples: + enable: true + title: "Примеры кода" + description: "Некоторые варианты использования типичного GroupDocs.Viewer для Node.js с помощью операций Java" + items: + # code sample loop + - title: "Преобразование DOCX в HTML" + content: | + Свойства класса HtmlViewOptions позволяют вам управлять процессом преобразования, подробнее об этом [здесь](https://docs.groupdocs.com/viewer/nodejs-java/rendering-to-html/). Например, вы можете встроить все внешние ресурсы в выходной HTML-файл, минимизировать выходной файл и оптимизировать его для печати. + {{< landing/code title="JavaScript">}} + ```javascript {style=abap} + import { Viewer, HtmlViewOptions } from '@groupdocs/groupdocs.viewer' + + // Установите параметры вывода HTML + const viewOptions = HtmlViewOptions.forEmbeddedResources() + + // Создать экземпляр средства просмотра + const viewer = new Viewer("resume.docx") + + // Преобразование DOCX в HTML со встроенными ресурсами + viewer.view(viewOptions) + viewer.close() + ``` + {{< /landing/code >}} + # code sample loop + - title: "Экспорт PPTX в PDF" + content: | + Создайте экземпляр класса PdfViewOptions и передайте его методу Viewer.view, чтобы преобразовать файл PowerPoint PPTX в PDF. Свойства класса PdfViewOptions позволяют вам управлять процессом преобразования. Например, вы можете защитить выходной PDF-файл, изменить порядок его страниц и указать качество изображений документа. Подробности см. в [следующем разделе документации](https://docs.groupdocs.com/viewer/nodejs-java/rendering-to-pdf/). + {{< landing/code title="JavaScript">}} + ```javascript {style=abap} + import { Viewer, PdfViewOptions } from '@groupdocs/groupdocs.viewer' + + // Установите параметры вывода PDF + const viewOptions = new PdfViewOptions("presentation.pdf") + + // Создать экземпляр средства просмотра + const viewer = new Viewer("presentation.pptx") + + // Экспорт PPTX в PDF + viewer.view(viewOptions) + viewer.close() + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "Обзоры продуктов GroupDocs" +# description: "Не верьте нам на слово. Посмотрите, что другие разработчики говорят о наших API" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Отличный сервис и отличная продукция. Они были чрезвычайно полезны и отзывчивы в процессе внедрения GroupDocs.Viewer для .NET, поэтому не могу не рекомендовать их достаточно высоко." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "После реализации и использования GroupDocs.Viewer для .NET в проекте он работает очень хорошо. Я проверил множество документов и пока все хорошо. Все, что я в него добавил, прекрасно визуализируется и выглядит так же хорошо, как в программе просмотра PDF или MS Word." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- diff --git a/content/viewer/nodejs-java/_index.th.md b/content/viewer/nodejs-java/_index.th.md new file mode 100644 index 00000000..d60c6032 --- /dev/null +++ b/content/viewer/nodejs-java/_index.th.md @@ -0,0 +1,282 @@ +--- +############################# Static ############################ +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: th +product: "Viewer" +product_tag: "viewer" +platform: "Node.js via Java" +platform_tag: "nodejs-java" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + + +############################# Head ############################ +head_title: "Node.js Document Viewer API สำหรับ PDF Word Excel HTML รูปภาพและอีเมล" +head_description: "โปรแกรมดูเอกสาร Node.js และ API การแสดงผลไฟล์ เพิ่มโปรแกรมดู PDF, โปรแกรมดู Word, โปรแกรมดู Excel, โปรแกรมดูรูปภาพ, โปรแกรมดู HTML, โปรแกรมดูอีเมลในแอปพลิเคชัน JavaScript" + +############################# Header ############################ +title: "Node.js API เพื่อเรนเดอร์และแสดงเอกสาร" +description: "ไลบรารี Document Viewer เพื่อพัฒนาแอปพลิเคชัน JavaScript ที่สามารถเรนเดอร์ ดู และจัดการเอกสารหลายรูปแบบโดยธรรมชาติ ซึ่งรองรับไฟล์มากกว่า 180 รูปแบบ" +words: + for: "for" + +actions: + main: "ดาวน์โหลด NPM ฟรี" + main_link: "https://www.npmjs.com/package/@groupdocs/groupdocs.viewer" + alt: "การออกใบอนุญาต" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/nodejs-java" + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + +release: + title: "เวอร์ชัน {0} เปิดตัวแล้ว" + notes: "ดูว่ามีอะไรใหม่" + downloads: "ดาวน์โหลด" + link: "https://releases.groupdocs.com/viewer/nodejs-java/release-notes/latest/" + +code: + title: "เรนเดอร์ไฟล์ PDF ใน JavaScript" + more: "ตัวอย่างเพิ่มเติม" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Node.js-via-Java" + install: "npm i @groupdocs/groupdocs.viewer" + content: | + ```javascript {style=abap} + // ตั้งค่าตัวเลือก HTML เอาต์พุต หนึ่งไฟล์ต่อหน้า + const viewOptions = HtmlViewOptions.forEmbeddedResources() + + // สร้างอินสแตนซ์ของผู้ดู + const viewer = new Viewer("resume.pdf") + + // เรนเดอร์ PDF เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.view(viewOptions) + viewer.close() + ``` +############################# Overview ############################ +overview: + enable: true + title: "ภาพรวม GroupDocs.Viewer" + description: "API เพื่อเรนเดอร์ แสดง แปลงเอกสาร สไลด์ ไดอะแกรม และเอกสารประเภทอื่นๆ อีกมากมายในแอปพลิเคชัน Node.js" + features: + # feature loop + - title: "ดูเอกสารอย่างมีประสิทธิภาพและเชื่อถือได้" + content: "ด้วย GroupDocs.Viewer API คุณสามารถเรนเดอร์เอกสารในรูปแบบที่รองรับเป็น HTML, JPEG, PNG และ PDF ได้อย่างมีประสิทธิภาพด้วยตัวเลือกที่ยืดหยุ่นและมีประสิทธิภาพ ในขณะที่ยังคงรักษาความสมบูรณ์ของเนื้อหาและโครงสร้างเอกสารไว้ GroupDocs.Viewer สำหรับ Node.js ทำงานบนแพลตฟอร์ม Windows และ Linux" + + # feature loop + - title: "รองรับรูปแบบไฟล์และเอกสารยอดนิยมส่วนใหญ่" + content: "เรารองรับการเรนเดอร์ไฟล์และรูปแบบเอกสารยอดนิยมกว่า 180 รูปแบบ ซึ่งรวมถึง Word, Excel, PDF, PowerPoint, ตระกูลรูปแบบ OpenDocument, ไฟล์เก็บถาวร, ภาพแรสเตอร์และเวกเตอร์, e-Books, ภาษาการเขียนโปรแกรมและมาร์กอัป และประเภทไฟล์อื่น ๆ อีกมากมาย รวมถึงไฟล์ที่เข้ารหัส ไฟล์ที่มีการป้องกันด้วยรหัสผ่าน" + + # feature loop + - title: "เอาต์พุตที่ปรับแต่งได้" + content: "GroupDocs.Viewer ไม่เพียงแต่ช่วยให้เรนเดอร์เอกสารเท่านั้น แต่ยังควบคุมวิธีการอย่างชัดเจน ส่วนใดของเอกสารที่ควรจะถูกเรนเดอร์หรือตอนนี้ วิธีเรนเดอร์เอกสาร และนำการแปลงต่างๆ ไปใช้กับเอาท์พุตที่ถูกเรนเดอร์" + +############################# Platforms ############################ +platforms: + enable: true + title: "ความเป็นอิสระของแพลตฟอร์ม" + description: "GroupDocs.Viewer สำหรับ Node.js รองรับระบบปฏิบัติการ เฟรมเวิร์ก และตัวจัดการแพ็คเกจต่อไปนี้" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "Eclipse" + image: "eclipse" + # platform loop + - title: "IntelliJ" + image: "intellij" + # platform loop + - title: "Windows" + image: "windows" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "NPM" + image: "npm" + +############################# File formats ############################ +formats: + enable: true + title: "รูปแบบไฟล์ที่รองรับ" + description: | + GroupDocs.Viewer สำหรับ Node.js ผ่าน Java รองรับการดำเนินการกับ [รูปแบบไฟล์](https://docs.groupdocs.com/viewer/nodejs-java/supported-document-formats/) ต่อไปนี้ + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument และรูปแบบข้อความ + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### รูปภาพ กราฟิก และไดอะแกรม + * **ภาพแรสเตอร์:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### อื่น + * **เว็บ:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **หอจดหมายเหตุ:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **อื่น:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "คุณสมบัติ GroupDocs.Viewer" + description: "เรนเดอร์ แสดง และแปลงเอกสาร PDF และ Office ได้อย่างราบรื่น" + + items: + # feature loop + - icon: "viewhtml" + title: "ดูเอกสารในรูปแบบ HTML" + content: "แปลงเอกสารทุกประเภทให้เป็นเอกสาร HTML ด้วย CSS และ SVG ซึ่งสามารถแสดงในเว็บเบราว์เซอร์สมัยใหม่" + + # feature loop + - icon: "rasterize" + title: "แปลงเอกสารเป็นแรสเตอร์" + content: "แรสเตอร์รูปแบบเอกสารที่รองรับให้เป็นภาพแรสเตอร์ พร้อมรูปแบบภาพที่ปรับได้และคุณภาพการบีบอัด" + + # feature loop + - icon: "sourcecode" + title: "เรนเดอร์และไฮไลต์โค้ดโปรแกรม" + content: "รองรับการเขียนโปรแกรม สคริปต์ และภาษามาร์กอัปยอดนิยมทั้งหมด พร้อมความสามารถในการแยกวิเคราะห์และเน้นไวยากรณ์ของภาษาเหล่านั้น" + + # feature loop + - icon: "convertpdf" + title: "แปลงเป็น PDF" + content: "เอกสารในรูปแบบที่รองรับสามารถแปลงและบันทึกเป็น PDF ได้อย่างง่ายดายพร้อมตัวเลือกที่ปรับได้" + + # feature loop + - icon: "transform" + title: "ใช้การแปลง" + content: "เอกสารเอาต์พุตสามารถแปลงได้ในระหว่างการเรนเดอร์ - สามารถหมุนหน้าและ/หรือจัดเรียงหน้าใหม่ได้ และอาจวางลายน้ำข้อความไว้บนหน้าเหล่านั้นได้" + + # feature loop + - icon: "adjustment" + title: "การปรับเอาต์พุต HTML" + content: "เอกสาร HTML เอาท์พุตที่สร้างโดย GroupDocs.Viewer สามารถปรับแต่งได้อย่างละเอียด: อนุญาตให้บันทึกลงในสตรีมหรือไฟล์ด้วยทรัพยากรภายนอกหรือแบบฝัง การเรียกกลับ และอื่นๆ" + + # feature loop + - icon: "complex" + title: "รองรับโครงสร้างเอกสารที่ซับซ้อน" + content: "GroupDocs.Viewer รองรับไม่เพียงแต่เอกสารเดียวเท่านั้น แต่ยังรวมถึงไฟล์ต่างๆ ที่ภายในประกอบด้วยรายการหรือโครงสร้างลำดับชั้นของเอกสาร เช่น ข้อความอีเมลพร้อมไฟล์แนบ ไฟล์ ZIP ที่มีไฟล์ภายในภายในโฟลเดอร์ รูปภาพ TIFF แบบหลายหน้า และอื่นๆ" + + # feature loop + - icon: "optimization" + title: "ตัวเลือกการเพิ่มประสิทธิภาพ" + content: "GroupDocs.Viewer มีระบบย่อยแคชที่ปรับได้ ซึ่งสามารถเร่งเวลาการโหลดให้เร็วขึ้นได้โดยใช้เอกสารเวอร์ชันแคช นอกจากนี้ ชุดของตัวเลือกที่แตกต่างกันสำหรับรูปแบบที่แตกต่างกันยังช่วยแยกส่วนหรือลักษณะที่ไม่จำเป็นของเอกสารออกจากการเรนเดอร์ (แบบอักษร แผ่นงานที่ซ่อน ไฟล์แนบในอีเมล) เพื่อเพิ่มประสิทธิภาพโดยรวม" + + # feature loop + - icon: "passwordprotected" + title: "รองรับเอกสารที่มีการป้องกันด้วยรหัสผ่าน" + content: "GroupDocs.Viewer อนุญาตให้เปิดเอกสารที่เข้ารหัสประเภทต่างๆ: PDF, WordProcessing, Spreadsheet, Presentation และอื่นๆ โดยระบุรหัสผ่านในตัวเลือกการโหลด" + +############################# Code samples ############################ +code_samples: + enable: true + title: "ตัวอย่างโค้ด" + description: "กรณีการใช้งานบางอย่างของ GroupDocs.Viewer ทั่วไปสำหรับ Node.js ผ่านการดำเนินการ Java" + items: + # code sample loop + - title: "เรนเดอร์ DOCX เป็น HTML" + content: | + คุณสมบัติคลาส `HtmlViewOptions` ช่วยให้คุณควบคุมกระบวนการแปลงได้ อ่านเพิ่มเติม [ที่นี่](https://docs.groupdocs.com/viewer/nodejs-java/rendering-to-html/) ตัวอย่างเช่น คุณสามารถฝังทรัพยากรภายนอกทั้งหมดในไฟล์ HTML เอาต์พุต ย่อขนาดไฟล์เอาต์พุต และปรับให้เหมาะสมสำหรับการพิมพ์ + {{< landing/code title="JavaScript">}} + ```javascript {style=abap} + import { Viewer, HtmlViewOptions } from '@groupdocs/groupdocs.viewer' + + // ตั้งค่าตัวเลือก HTML เอาต์พุต หนึ่งไฟล์ต่อหน้า + const viewOptions = HtmlViewOptions.forEmbeddedResources() + + // สร้างอินสแตนซ์ของผู้ดู + const viewer = new Viewer("resume.docx") + + // เรนเดอร์ DOCX เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.view(viewOptions) + viewer.close() + ``` + {{< /landing/code >}} + # code sample loop + - title: "ส่งออก PPTX เป็น PDF" + content: | + สร้างอินสแตนซ์คลาส `PdfViewOptions` แล้วส่งต่อไปยังเมธอด `Viewer.view` เพื่อแปลงไฟล์ PowerPoint PPTX เป็น PDF คุณสมบัติคลาส `PdfViewOptions` ช่วยให้คุณสามารถควบคุมกระบวนการแปลงได้ ตัวอย่างเช่น คุณสามารถป้องกันไฟล์ PDF เอาต์พุต เรียงลำดับหน้าใหม่ และระบุคุณภาพของรูปภาพเอกสารได้ โปรดดูรายละเอียดที่[ส่วนเอกสารประกอบต่อไปนี้](https://docs.groupdocs.com/viewer/nodejs-java/rendering-to-pdf/) + {{< landing/code title="JavaScript">}} + ```javascript {style=abap} + import { Viewer, PdfViewOptions } from '@groupdocs/groupdocs.viewer' + + // ตั้งค่าตัวเลือกเอาต์พุต PDF + const viewOptions = new PdfViewOptions("presentation.pdf") + + // สร้างอินสแตนซ์ของผู้ดู + const viewer = new Viewer("presentation.pptx") + + // ส่งออก PPTX เป็น PDF + viewer.view(viewOptions) + viewer.close() + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "บทวิจารณ์ผลิตภัณฑ์ GroupDocs" +# description: "อย่าเพิ่งเชื่อคำพูดของเรา ดูว่านักพัฒนารายอื่นพูดถึง API ของเราอย่างไร" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "บริการที่เป็นเลิศและผลิตภัณฑ์ที่เป็นเลิศ พวกเขามีประโยชน์และตอบสนองอย่างมากในระหว่างกระบวนการใช้งาน GroupDocs.Viewer สำหรับ .NET ไม่สามารถแนะนำได้มากพอ" +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "หลังจากใช้งานและใช้งาน GroupDocs.Viewer สำหรับ .NET ในโครงการแล้ว ดูเหมือนว่าจะทำงานได้ดีมาก ฉันได้ทดสอบกับเอกสารจำนวนมากและจนถึงตอนนี้ก็ดีมาก ทุกสิ่งที่ฉันใส่ลงไปนั้นเรนเดอร์ได้อย่างสวยงามและดูดีไม่แพ้กันในโปรแกรมดู PDF หรือ MS Word" +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- diff --git a/content/viewer/nodejs-java/_index.uk.md b/content/viewer/nodejs-java/_index.uk.md new file mode 100644 index 00000000..ae788cd1 --- /dev/null +++ b/content/viewer/nodejs-java/_index.uk.md @@ -0,0 +1,282 @@ +--- +############################# Static ############################ +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: "Node.js via Java" +platform_tag: "nodejs-java" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + + +############################# Head ############################ +head_title: "API засобу перегляду документів Node.js для PDF Word Excel HTML зображень і електронних листів" +head_description: "Переглядач документів Node.js і API відтворення файлів. Додайте засіб перегляду PDF, Word, Excel, зображень, HTML, електронної пошти в програмах JavaScript." + +############################# Header ############################ +title: "API Node.js для візуалізації та відображення документів" +description: "Бібліотека засобу перегляду документів для розробки додатків JavaScript, які нативно відтворюють, переглядають і маніпулюють багатоформатними документами, що підтримують понад 180 форматів файлів." +words: + for: "for" + +actions: + main: "Безкоштовне завантаження NPM" + main_link: "https://www.npmjs.com/package/@groupdocs/groupdocs.viewer" + alt: "Ліцензування" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/nodejs-java" + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або подайте запит на ліцензію" + +release: + title: "Випущено версію {0}" + notes: "Подивіться, що нового" + downloads: "Завантаження" + link: "https://releases.groupdocs.com/viewer/nodejs-java/release-notes/latest/" + +code: + title: "Відтворення файлів PDF у JavaScript" + more: "Більше прикладів" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Node.js-via-Java" + install: "npm i @groupdocs/groupdocs.viewer" + content: | + ```javascript {style=abap} + // Встановити вихідні параметри HTML + const viewOptions = HtmlViewOptions.forEmbeddedResources() + + // Переглядач екземплярів + const viewer = new Viewer("resume.pdf") + + // Перетворіть PDF у HTML + viewer.view(viewOptions) + viewer.close() + ``` +############################# Overview ############################ +overview: + enable: true + title: "Короткий огляд GroupDocs.Viewer" + description: "API для візуалізації, відображення, перетворення документів, слайдів, діаграм і багатьох інших типів документів у програмах Node.js" + features: + # feature loop + - title: "Переглядайте документи ефективно та надійно" + content: "За допомогою API GroupDocs.Viewer ви можете ефективно відтворювати документи будь-яких підтримуваних форматів у HTML, JPEG, PNG і PDF за допомогою гнучких і потужних параметрів, зберігаючи цілісність вмісту та структури документа. GroupDocs.Viewer для Node.js працює на платформах Windows і Linux." + + # feature loop + - title: "Підтримуються більшість популярних форматів файлів і документів" + content: "Ми підтримуємо відтворення понад 180 найпопулярніших форматів файлів і документів, включаючи Word, Excel, PDF, PowerPoint, сімейство форматів OpenDocument, архіви, растрові та векторні зображення, електронні книги, мови програмування та розмітки, а також багато інших типів файлів, у тому числі зашифрованих. файли із захистом паролем." + + # feature loop + - title: "Настроюваний вихід" + content: "GroupDocs.Viewer дозволяє не тільки візуалізувати документ, але й контролювати, як саме, які частини документа мають бути візуалізовані або зараз, як вони мають бути візуалізовані, а також застосовувати різні трансформації до відрендерених результатів." + +############################# Platforms ############################ +platforms: + enable: true + title: "Незалежність від платформи" + description: "GroupDocs.Viewer для Node.js підтримує такі операційні системи, фреймворки та менеджери пакетів" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "Eclipse" + image: "eclipse" + # platform loop + - title: "IntelliJ" + image: "intellij" + # platform loop + - title: "Windows" + image: "windows" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "NPM" + image: "npm" + +############################# File formats ############################ +formats: + enable: true + title: "Підтримувані формати файлів" + description: | + GroupDocs.Viewer для Node.js через Java підтримує операції з такими [форматами файлів](https://docs.groupdocs.com/viewer/nodejs-java/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument і текстові формати + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### Зображення, графіки та діаграми + * **Растрові зображення:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### Інший + * **Інтернет:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **Архіви:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **Інший:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "Функції GroupDocs.Viewer" + description: "Легко візуалізуйте, відображайте та конвертуйте документи PDF і Office" + + items: + # feature loop + - icon: "viewhtml" + title: "Перегляд документів у HTML" + content: "Перетворіть документ будь-якого типу в документ HTML за допомогою CSS і SVG, який можна відобразити в будь-якому сучасному веб-браузері." + + # feature loop + - icon: "rasterize" + title: "Растеризуйте документи" + content: "Растеризуйте будь-який підтримуваний формат документа до растрового зображення з регульованим форматом зображення та якістю стиснення." + + # feature loop + - icon: "sourcecode" + title: "Відтворення та виділення програмних кодів" + content: "Підтримка всіх популярних мов програмування, сценаріїв і розмітки з можливістю аналізу та виділення їх синтаксису." + + # feature loop + - icon: "convertpdf" + title: "Перетворити в PDF" + content: "Документ будь-якого підтримуваного формату можна легко конвертувати та зберегти у PDF із настроюваними параметрами." + + # feature loop + - icon: "transform" + title: "Застосувати перетворення" + content: "Вихідний документ можна трансформувати під час візуалізації - сторінки можна обертати та/або змінювати порядок, а текстовий водяний знак можна розміщувати поверх них." + + # feature loop + - icon: "adjustment" + title: "Налаштування виведення HTML" + content: "Вихідні HTML-документи, згенеровані GroupDocs.Viewer, можна дуже точно налаштувати: дозволено зберігати в потік або файл із зовнішніми або вбудованими ресурсами, зворотними викликами тощо." + + # feature loop + - icon: "complex" + title: "Підтримка складних структур документів" + content: "GroupDocs.Viewer підтримує не лише окремі документи, а й файли, які містять список або ієрархічну структуру документів, як-от повідомлення електронної пошти з вкладеннями, ZIP-архіви з внутрішніми файлами в папках, багатосторінкові зображення TIFF тощо." + + # feature loop + - icon: "optimization" + title: "Варіанти оптимізації" + content: "GroupDocs.Viewer містить регульовану підсистему кешу, яка може пришвидшити час завантаження за допомогою кешованих версій документів. Крім того, набір різних параметрів для різних форматів дозволяє виключити деякі непотрібні частини або аспекти документів із візуалізації (шрифти, приховані аркуші, вкладення електронної пошти), щоб оптимізувати загальну продуктивність" + + # feature loop + - icon: "passwordprotected" + title: "Підтримка документів, захищених паролем" + content: "GroupDocs.Viewer дозволяє відкривати зашифровані документи різних типів: PDF, WordProcessing, Spreadsheet, Presentation та інші, вказавши пароль у параметрах завантаження." + +############################# Code samples ############################ +code_samples: + enable: true + title: "Зразки коду" + description: "Деякі випадки використання типового GroupDocs.Viewer для Node.js через операції Java" + items: + # code sample loop + - title: "Перетворення DOCX у HTML" + content: | + Властивості класу `HtmlViewOptions` дозволяють контролювати процес перетворення, докладніше про це [тут](https://docs.groupdocs.com/viewer/nodejs-java/rendering-to-html/). Наприклад, ви можете вбудувати всі зовнішні ресурси у вихідний HTML-файл, зменшити вихідний файл і оптимізувати його для друку. + {{< landing/code title="JavaScript">}} + ```javascript {style=abap} + import { Viewer, HtmlViewOptions } from '@groupdocs/groupdocs.viewer' + + // Встановити вихідні параметри HTML + const viewOptions = HtmlViewOptions.forEmbeddedResources() + + // Переглядач екземплярів + const viewer = new Viewer("resume.docx") + + // Перетворіть DOCX у HTML за допомогою вбудованих ресурсів + viewer.view(viewOptions) + viewer.close() + ``` + {{< /landing/code >}} + # code sample loop + - title: "Експорт PPTX у PDF" + content: | + Створіть екземпляр класу `PdfViewOptions` і передайте його методу `Viewer.view`, щоб перетворити файл PowerPoint PPTX у PDF. Властивості класу `PdfViewOptions` дозволяють контролювати процес перетворення. Наприклад, ви можете захистити вихідний PDF-файл, змінити порядок його сторінок і вказати якість зображень документів. Зверніться до [розділу наступної документації](https://docs.groupdocs.com/viewer/nodejs-java/rendering-to-pdf/), щоб дізнатися більше. + {{< landing/code title="JavaScript">}} + ```javascript {style=abap} + import { Viewer, PdfViewOptions } from '@groupdocs/groupdocs.viewer' + + // Встановіть параметри вихідного PDF + const viewOptions = new PdfViewOptions("presentation.pdf") + + // Переглядач екземплярів + const viewer = new Viewer("presentation.pptx") + + // Експорт PPTX у PDF + viewer.view(viewOptions) + viewer.close() + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "Огляди продукції GroupDocs" +# description: "Не вірте нам на слово. Подивіться, що інші розробники кажуть про наші API" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Відмінний сервіс і відмінні продукти. Вони були надзвичайно корисними та чуйними під час впровадження GroupDocs.Viewer для .NET, тому не можу рекомендувати їх досить високо." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Після впровадження та використання GroupDocs.Viewer для .NET у проекті виглядає, що він працює дуже добре. Я перевірив багато документів, і поки що все добре. Усе, що я кинув до нього, чудово відображається та виглядає так само добре, як у засобі перегляду PDF чи MS Word." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- diff --git a/content/viewer/nodejs-java/_index.vi.md b/content/viewer/nodejs-java/_index.vi.md new file mode 100644 index 00000000..3aa41e59 --- /dev/null +++ b/content/viewer/nodejs-java/_index.vi.md @@ -0,0 +1,282 @@ +--- +############################# Static ############################ +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: "Node.js via Java" +platform_tag: "nodejs-java" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + + +############################# Head ############################ +head_title: "API trình xem tài liệu Node.js cho PDF Word Excel Hình ảnh HTML và email" +head_description: "API kết xuất tệp và trình xem tài liệu của Node.js. Thêm trình xem PDF, trình xem Word, trình xem Excel, trình xem hình ảnh, trình xem HTML, trình xem Email trong các ứng dụng JavaScript." + +############################# Header ############################ +title: "API Node.js để kết xuất và hiển thị Tài liệu" +description: "Thư viện Trình xem Tài liệu để phát triển các ứng dụng JavaScript có khả năng hiển thị, xem và thao tác nguyên bản, các tài liệu đa định dạng hỗ trợ hơn 180 định dạng tệp." +words: + for: "for" + +actions: + main: "Tải xuống NPM miễn phí" + main_link: "https://www.npmjs.com/package/@groupdocs/groupdocs.viewer" + alt: "Cấp phép" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/nodejs-java" + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + +release: + title: "Đã phát hành phiên bản {0}" + notes: "Xem có gì mới" + downloads: "Tải xuống" + link: "https://releases.groupdocs.com/viewer/nodejs-java/release-notes/latest/" + +code: + title: "Hiển thị tệp PDF bằng JavaScript" + more: "Thêm ví dụ" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Node.js-via-Java" + install: "npm i @groupdocs/groupdocs.viewer" + content: | + ```javascript {style=abap} + // Đặt tùy chọn HTML đầu ra, một tệp trên mỗi trang + const viewOptions = HtmlViewOptions.forEmbeddedResources() + + // Trình xem tức thời + const viewer = new Viewer("resume.pdf") + + // Kết xuất PDF sang HTML + viewer.view(viewOptions) + viewer.close() + ``` +############################# Overview ############################ +overview: + enable: true + title: "Tổng quan về GroupDocs.Viewer" + description: "API để kết xuất, hiển thị, chuyển đổi tài liệu, trang trình bày, sơ đồ và nhiều loại tài liệu khác trong ứng dụng Node.js" + features: + # feature loop + - title: "Xem tài liệu hiệu quả và đáng tin cậy" + content: "Với API GroupDocs.Viewer, bạn có thể hiển thị hiệu quả các tài liệu thuộc mọi định dạng có thể hỗ trợ sang HTML, JPEG, PNG và PDF với các tùy chọn linh hoạt và mạnh mẽ trong khi vẫn duy trì tính toàn vẹn của nội dung và cấu trúc tài liệu. GroupDocs.Viewer dành cho Node.js hoạt động trên nền tảng Windows và Linux." + + # feature loop + - title: "Hỗ trợ hầu hết các định dạng tệp và tài liệu phổ biến" + content: "Chúng tôi hỗ trợ hiển thị trên 180 định dạng tài liệu và tệp phổ biến nhất bao gồm Word, Excel, PDF, PowerPoint, nhóm định dạng OpenDocument, Lưu trữ, hình ảnh Raster và Vector, Sách điện tử, ngôn ngữ lập trình và đánh dấu cũng như nhiều loại tệp khác, bao gồm cả mã hóa tập tin có mật khẩu bảo vệ." + + # feature loop + - title: "Đầu ra có thể tùy chỉnh" + content: "GroupDocs.Viewer không chỉ cho phép hiển thị tài liệu mà còn kiểm soát cách hiển thị chính xác, phần nào của tài liệu sẽ được hiển thị hoặc bây giờ, cách hiển thị chúng và áp dụng các phép biến đổi khác nhau cho đầu ra được hiển thị." + +############################# Platforms ############################ +platforms: + enable: true + title: "Nền tảng độc lập" + description: "GroupDocs.Viewer dành cho Node.js hỗ trợ các hệ điều hành, khung và trình quản lý gói sau" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "Eclipse" + image: "eclipse" + # platform loop + - title: "IntelliJ" + image: "intellij" + # platform loop + - title: "Windows" + image: "windows" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "NPM" + image: "npm" + +############################# File formats ############################ +formats: + enable: true + title: "Các định dạng tập tin được hỗ trợ" + description: | + GroupDocs.Viewer dành cho Node.js qua Java hỗ trợ các thao tác với sau [định dạng tệp](https://docs.groupdocs.com/viewer/nodejs-java/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument và các định dạng văn bản + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### Hình ảnh, Đồ họa & Sơ đồ + * **Hình ảnh raster:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### Khác + * **Web:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **Lưu trữ:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **Khác:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "Tính năng của GroupDocs.Viewer" + description: "Hiển thị, hiển thị và chuyển đổi tài liệu PDF và Office một cách liền mạch" + + items: + # feature loop + - icon: "viewhtml" + title: "Xem tài liệu bằng HTML" + content: "Chuyển đổi bất kỳ loại tài liệu nào thành tài liệu HTML bằng CSS và SVG, có thể được hiển thị trong bất kỳ trình duyệt web hiện đại nào." + + # feature loop + - icon: "rasterize" + title: "Rasterize tài liệu" + content: "Rasterize bất kỳ định dạng tài liệu nào có thể hỗ trợ thành hình ảnh raster, với định dạng hình ảnh có thể điều chỉnh và chất lượng nén." + + # feature loop + - icon: "sourcecode" + title: "Hiển thị và đánh dấu mã lập trình" + content: "Hỗ trợ tất cả các ngôn ngữ lập trình, viết kịch bản và đánh dấu phổ biến, với khả năng phân tích cú pháp và làm nổi bật cú pháp của chúng." + + # feature loop + - icon: "convertpdf" + title: "Chuyển đổi sang PDF" + content: "Tài liệu ở bất kỳ định dạng hỗ trợ nào đều có thể dễ dàng chuyển đổi và lưu thành PDF với các tùy chọn có thể điều chỉnh." + + # feature loop + - icon: "transform" + title: "Áp dụng các phép biến đổi" + content: "Tài liệu đầu ra có thể được chuyển đổi trong quá trình hiển thị - các trang có thể được xoay và/hoặc sắp xếp lại và hình mờ văn bản có thể được đặt trên chúng." + + # feature loop + - icon: "adjustment" + title: "Điều chỉnh đầu ra HTML" + content: "Các tài liệu HTML đầu ra do GroupDocs.Viewer tạo ra có thể được điều chỉnh rất tinh vi: nó được phép lưu vào luồng hoặc tệp, với các tài nguyên bên ngoài hoặc được nhúng, lệnh gọi lại, v.v." + + # feature loop + - icon: "complex" + title: "Hỗ trợ cấu trúc tài liệu phức tạp" + content: "GroupDocs.Viewer không chỉ hỗ trợ các tài liệu đơn lẻ mà còn hỗ trợ các tệp chứa danh sách hoặc cấu trúc phân cấp của tài liệu, như email có tệp đính kèm, kho lưu trữ ZIP với các tệp nội bộ trong thư mục, hình ảnh TIFF nhiều trang, v.v." + + # feature loop + - icon: "optimization" + title: "Tùy chọn tối ưu hóa" + content: "GroupDocs.Viewer chứa một hệ thống con bộ nhớ đệm có thể điều chỉnh, hệ thống này có thể rút ngắn thời gian tải bằng cách sử dụng các phiên bản tài liệu được lưu trong bộ nhớ đệm. Ngoài ra, một tập hợp các tùy chọn khác nhau cho các định dạng khác nhau cho phép loại trừ một số phần hoặc khía cạnh không cần thiết của tài liệu khỏi quá trình hiển thị (phông chữ, bảng tính ẩn, tệp đính kèm email) để tối ưu hóa hiệu suất tổng thể" + + # feature loop + - icon: "passwordprotected" + title: "Hỗ trợ các tài liệu được bảo vệ bằng mật khẩu" + content: "GroupDocs.Viewer cho phép mở các tài liệu được mã hóa thuộc nhiều loại khác nhau: PDF, WordProcessing, Bảng tính, Bản trình bày và các loại khác bằng cách chỉ định mật khẩu trong các tùy chọn tải." + +############################# Code samples ############################ +code_samples: + enable: true + title: "Mẫu mã" + description: "Một số trường hợp sử dụng GroupDocs.Viewer điển hình cho Node.js thông qua hoạt động Java" + items: + # code sample loop + - title: "Kết xuất DOCX sang HTML" + content: | + Thuộc tính lớp `HtmlViewOptions` cho phép bạn kiểm soát quá trình chuyển đổi, tìm hiểu thêm về điều đó [tại đây](https://docs.groupdocs.com/viewer/nodejs-java/rendering-to-html/). Ví dụ: bạn có thể nhúng tất cả tài nguyên bên ngoài vào tệp HTML đầu ra, thu nhỏ tệp đầu ra và tối ưu hóa tệp để in. + {{< landing/code title="JavaScript">}} + ```javascript {style=abap} + import { Viewer, HtmlViewOptions } from '@groupdocs/groupdocs.viewer' + + // Đặt tùy chọn HTML đầu ra, một tệp trên mỗi trang + const viewOptions = HtmlViewOptions.forEmbeddedResources() + + // Trình xem tức thời + const viewer = new Viewer("resume.docx") + + // Kết xuất DOCX sang HTML bằng tài nguyên được nhúng + viewer.view(viewOptions) + viewer.close() + ``` + {{< /landing/code >}} + # code sample loop + - title: "Xuất PPTX sang PDF" + content: | + Tạo một phiên bản lớp `PdfViewOptions` và chuyển nó sang phương thức `Viewer.view` để chuyển đổi tệp PowerPoint PPTX sang PDF. Thuộc tính lớp `PdfViewOptions` cho phép bạn kiểm soát quá trình chuyển đổi. Ví dụ: bạn có thể bảo vệ tệp PDF đầu ra, sắp xếp lại các trang của nó và chỉ định chất lượng của hình ảnh tài liệu. Hãy tham khảo [phần tài liệu sau](https://docs.groupdocs.com/viewer/nodejs-java/rendering-to-pdf/) để biết chi tiết. + {{< landing/code title="JavaScript">}} + ```javascript {style=abap} + import { Viewer, PdfViewOptions } from '@groupdocs/groupdocs.viewer' + + // Đặt tùy chọn PDF đầu ra + const viewOptions = new PdfViewOptions("presentation.pdf") + + // Trình xem tức thời + const viewer = new Viewer("presentation.pptx") + + // Xuất PPTX sang PDF + viewer.view(viewOptions) + viewer.close() + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "Đánh giá sản phẩm GroupDocs" +# description: "Đừng chỉ tin lời chúng tôi. Xem những nhà phát triển khác nói gì về API của chúng tôi" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Dịch vụ tuyệt vời và sản phẩm tuyệt vời. Chúng cực kỳ hữu ích và phản hồi nhanh trong quá trình triển khai GroupDocs.Viewer cho .NET, không thể giới thiệu chúng đủ cao." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Sau khi triển khai và sử dụng GroupDocs.Viewer cho .NET trong dự án, có vẻ như nó hoạt động rất tốt. Tôi đã thử nghiệm với rất nhiều tài liệu và cho đến nay vẫn tốt. Mọi thứ tôi đưa vào nó đều hiển thị độc đáo và trông đẹp như trong trình xem PDF hoặc MS Word." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- diff --git a/content/viewer/nodejs-java/_index.zh.md b/content/viewer/nodejs-java/_index.zh.md new file mode 100644 index 00000000..a5218b38 --- /dev/null +++ b/content/viewer/nodejs-java/_index.zh.md @@ -0,0 +1,282 @@ +--- +############################# Static ############################ +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: "Node.js via Java" +platform_tag: "nodejs-java" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + + +############################# Head ############################ +head_title: "用于 PDF、Word、Excel、HTML 图像和电子邮件的 Node.js 文档查看器 API" +head_description: "Node.js 文档查看器和文件渲染 API。在 JavaScript 应用程序中添加 PDF 查看器、Word 查看器、Excel 查看器、图像查看器、HTML 查看器、电子邮件查看器。" + +############################# Header ############################ +title: "用于渲染和显示文档的 Node.js API" +description: "文档查看器库,用于开发原生渲染、查看和操作支持 180 多种文件格式的多格式文档的 JavaScript 应用程序。" +words: + for: "for" + +actions: + main: "免费 NPM 下载" + main_link: "https://www.npmjs.com/package/@groupdocs/groupdocs.viewer" + alt: "许可" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/nodejs-java" + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + +release: + title: "版本 {0} 已发布" + notes: "看看有什么新鲜事" + downloads: "下载" + link: "https://releases.groupdocs.com/viewer/nodejs-java/release-notes/latest/" + +code: + title: "在 JavaScript 中渲染 PDF 文件" + more: "更多示例" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Node.js-via-Java" + install: "npm i @groupdocs/groupdocs.viewer" + content: | + ```javascript {style=abap} + // 设置输出 HTML 选项,每页一个文件 + const viewOptions = HtmlViewOptions.forEmbeddedResources() + + // 实例化查看器 + const viewer = new Viewer("resume.pdf") + + // 使用嵌入资源将 PDF 渲染为 HTML + viewer.view(viewOptions) + viewer.close() + ``` +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer 概览" + description: "用于在 Node.js 应用程序中渲染、显示、转换文档、幻灯片、图表和许多其他文档类型的 API" + features: + # feature loop + - title: "高效可靠地查看文档" + content: "借助 GroupDocs.Viewer API,您可以使用灵活而强大的选项将任何支持格式的文档高效呈现为 HTML、JPEG、PNG 和 PDF,同时保持内容和文档结构的完整性。 GroupDocs.Viewer for Node.js 适用于 Windows 和 Linux 平台。" + + # feature loop + - title: "支持最流行的文件和文档格式" + content: "我们支持渲染 180 多种最流行的文件和文档格式,包括 Word、Excel、PDF、PowerPoint、OpenDocument 格式系列、档案、光栅和矢量图像、电子书、编程语言和标记以及许多其他文件类型,包括加密的文件类型受密码保护的文件。" + + # feature loop + - title: "可定制的输出" + content: "GroupDocs.Viewer 不仅允许渲染文档,还可以控制渲染的准确方式、文档的哪些部分应该渲染或现在渲染、如何渲染,以及对渲染的输出应用不同的转换。" + +############################# Platforms ############################ +platforms: + enable: true + title: "平台独立性" + description: "GroupDocs.Viewer for Node.js 支持以下操作系统、框架和包管理器" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "Eclipse" + image: "eclipse" + # platform loop + - title: "IntelliJ" + image: "intellij" + # platform loop + - title: "Windows" + image: "windows" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "NPM" + image: "npm" + +############################# File formats ############################ +formats: + enable: true + title: "支持的文件格式" + description: | + GroupDocs.Viewer for Node.js via Java 支持以下[文件格式](https://docs.groupdocs.com/viewer/nodejs-java/supported-document-formats/) 的操作。 + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office、OpenDocument 和文本格式 + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### 图像、图形和图表 + * **光栅图像:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### 其他 + * **网络:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **档案:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **其他:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "GroupDocs.Viewer 功能" + description: "无缝渲染、显示和转换 PDF 和 Office 文档" + + items: + # feature loop + - icon: "viewhtml" + title: "查看 HTML 格式的文档" + content: "使用 CSS 和 SVG 将任何类型的文档转换为 HTML 文档,可以在任何现代网络浏览器中显示。" + + # feature loop + - icon: "rasterize" + title: "光栅化文档" + content: "将任何支持的文档格式光栅化为光栅图像,并具有可调整的图像格式和压缩质量。" + + # feature loop + - icon: "sourcecode" + title: "渲染并突出显示编程代码" + content: "支持所有流行的编程、脚本和标记语言,能够解析和突出显示其语法。" + + # feature loop + - icon: "convertpdf" + title: "转换为 PDF" + content: "任何支持格式的文档都可以通过可调整的选项轻松转换并保存为 PDF。" + + # feature loop + - icon: "transform" + title: "应用转换" + content: "输出文档可以在渲染过程中进行转换 - 页面可以旋转和/或重新排列,并且文本水印可以放置在它们的顶部。" + + # feature loop + - icon: "adjustment" + title: "HTML 输出调整" + content: "由 GroupDocs.Viewer 生成的输出 HTML 文档可以进行非常精细的调整:允许使用外部或嵌入资源、回调等保存到流或文件。" + + # feature loop + - icon: "complex" + title: "支持复杂的文档结构" + content: "GroupDocs.Viewer 不仅支持单个文档,还支持内部包含文档列表或层次结构的文件,例如带有附件的电子邮件、文件夹内带有内部文件的 ZIP 存档、多页 TIFF 图像等。" + + # feature loop + - icon: "optimization" + title: "优化选项" + content: "GroupDocs.Viewer 包含一个可调整的缓存子系统,它可以通过使用文档的缓存版本来缩短加载时间。此外,针对不同格式的一组不同选项允许从渲染中排除文档的一些不必要的部分或方面(字体、隐藏的工作表、电子邮件附件),以优化整体性能" + + # feature loop + - icon: "passwordprotected" + title: "支持受密码保护的文档" + content: "GroupDocs.Viewer 允许通过在加载选项中指定密码来打开不同类型的加密文档:PDF、WordProcessing、电子表格、演示文稿等。" + +############################# Code samples ############################ +code_samples: + enable: true + title: "代码示例" + description: "通过 Java 操作用于 Node.js 的典型 GroupDocs.Viewer 的一些用例" + items: + # code sample loop + - title: "将 DOCX 渲染为 HTML" + content: | + `HtmlViewOptions` 类属性允许您控制转换过程,更多信息请参见[此处](https://docs.groupdocs.com/viewer/nodejs-java/rendering-to-html/)。 例如,您可以将所有外部资源嵌入到输出 HTML 文件中、缩小输出文件并优化其打印。 + {{< landing/code title="JavaScript">}} + ```javascript {style=abap} + import { Viewer, HtmlViewOptions } from '@groupdocs/groupdocs.viewer' + + // 设置输出 HTML 选项,每页一个文件 + const viewOptions = HtmlViewOptions.forEmbeddedResources() + + // 实例化查看器 + const viewer = new Viewer("resume.docx") + + // 使用嵌入资源将 DOCX 渲染为 HTML + viewer.view(viewOptions) + viewer.close() + ``` + {{< /landing/code >}} + # code sample loop + - title: "将 PPTX 导出为 PDF" + content: | + 创建一个PdfViewOptions”类实例并将其传递给Viewer.view”方法以将 PowerPoint PPTX 文件转换为 PDF。 `PdfViewOptions` 类属性允许您控制转换过程。例如,您可以保护输出 PDF 文件、重新排序其页面以及指定文档图像的质量。有关详细信息,请参阅[以下文档部分](https://docs.groupdocs.com/viewer/nodejs-java/rendering-to-pdf/)。 + {{< landing/code title="JavaScript">}} + ```javascript {style=abap} + import { Viewer, PdfViewOptions } from '@groupdocs/groupdocs.viewer' + + // 设置输出 PDF 选项 + const viewOptions = new PdfViewOptions("presentation.pdf") + + // 实例化查看器 + const viewer = new Viewer("presentation.pptx") + + // 将 PPTX 导出为 PDF + viewer.view(viewOptions) + viewer.close() + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "GroupDocs 产品评论" +# description: "不要只相信我们的话。看看其他开发人员如何评价我们的 API" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "优质的服务和优质的产品。他们在 GroupDocs.Viewer for .NET 实施过程中提供了极大的帮助和响应,强烈推荐他们。" +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "在项目中实现并使用 GroupDocs.Viewer for .NET 后,它看起来运行得很好。我已经用很多文档进行了测试,到目前为止一切顺利。我扔给它的所有内容都可以很好地呈现,并且看起来与在 PDF 查看器或 MS Word 中一样好。" +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- diff --git a/content/viewer/python-net/_index.de.md b/content/viewer/python-net/_index.de.md new file mode 100644 index 00000000..e9e5dc1f --- /dev/null +++ b/content/viewer/python-net/_index.de.md @@ -0,0 +1,280 @@ +--- +############################# Static ############################ +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: de +product: "Viewer" +product_tag: "viewer" +platform: "Python via .NET" +platform_tag: "python-net" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + + +############################# Head ############################ +head_title: "Python Dokumentenviewer-API für PDF, Word, Excel, HTML, Bilder & E-Mails" +head_description: "Python Dokumentenviewer- und Dateirendering-API. Fügen Sie PDF-Viewer, Word-Viewer, Excel-Viewer, Bildbetrachter, HTML-Viewer und E-Mail-Viewer in Python-Anwendungen hinzu." + +############################# Header ############################ +title: "Eine leistungsstarke Python-API für die optimierte Dokumentenwiedergabe" +description: "Rendern und Anzeigen von über 180 Dokumentformaten (PDF, HTML, Bild) mit leistungsstarken APIs und vielfältigen Konfigurationsoptionen zum Entwickeln von Python-Anwendungen." +words: + for: "for" + +actions: + main: "Kostenloser PyPI-Download" + main_link: "https://pypi.org/project/groupdocs-viewer/" + alt: "Lizenzierung" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/python-net" + title: "Bereit anzufangen?" + description: "Testen Sie die Funktionen von GroupDocs.Viewer kostenlos oder fordern Sie eine Lizenz an" + +release: + title: "Version {0} veröffentlicht" + notes: "Schau was neu ist" + downloads: "Downloads" + link: "https://releases.groupdocs.com/viewer/python-net/release-notes/latest/" + +code: + title: "PDF-Dateien in Python rendern" + more: "Mehr Beispiele" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Python-via-.NET" + install: "pip install GroupDocs.Viewer" + content: | + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + hvo = gvo.HtmlViewOptions + + // Ausgabe-HTML-Optionen festlegen, eine Datei pro Seite + with gv.Viewer("resume.docx") as viewer: + // Viewer instanziieren + opts = hvo.for_embedded_resources("page_{0}.html") + + // PDF mit eingebetteten Ressourcen in HTML rendern + viewer.view(opts) + ``` +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer auf einen Blick" + description: "API zum Rendern, Anzeigen, Konvertieren von Dokumenten, Folien, Diagrammen und vielen anderen Dokumenttypen in Python-Anwendungen" + features: + # feature loop + - title: "Dokumente effizient und zuverlässig anzeigen" + content: "Mit der GroupDocs.Viewer-API können Sie Dokumente aller unterstützten Formate effizient in HTML, JPEG, PNG und PDF mit flexiblen und leistungsstarken Optionen rendern, während die Integrität von Inhalt und Dokumentstruktur erhalten bleibt. GroupDocs.Viewer für Python funktioniert auf Windows- und Linux-Plattformen." + + # feature loop + - title: "Die meisten populären Datei- und Dokumentformate werden unterstützt" + content: "Wir unterstützen das Rendern von über 180 der beliebtesten Datei- und Dokumentformate, darunter Word, Excel, PDF, PowerPoint, OpenDocument-Formate, Archive, Raster- und Vektorbilder, E-Books, Programmiersprachen und Markups sowie viele andere Dateitypen, einschließlich verschlüsselter Dateien mit Passwortschutz." + + # feature loop + - title: "Anpassbare Ausgabe" + content: "GroupDocs.Viewer ermöglicht nicht nur das Rendern des Dokuments, sondern auch die Steuerung, wie genau, welche Teile des Dokuments gerendert werden sollen oder nicht, wie sie gerendert werden sollen und verschiedene Transformationen auf die gerenderte Ausgabe angewendet werden können." + +############################# Platforms ############################ +platforms: + enable: true + title: "Plattformunabhängigkeit" + description: "GroupDocs.Viewer für Python unterstützt die folgenden Betriebssysteme, Frameworks und Paketmanager" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "Eclipse" + image: "eclipse" + # platform loop + - title: "IntelliJ" + image: "intellij" + # platform loop + - title: "Windows" + image: "windows" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "PyPI" + image: "pypi" + +############################# File formats ############################ +formats: + enable: true + title: "Unterstützte Dateiformate" + description: | + GroupDocs.Viewer für Python via .NET unterstützt Operationen mit den folgenden Dateiformaten: [https://docs.groupdocs.com/viewer/python-net/supported-document-formats/](https://docs.groupdocs.com/viewer/python-net/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument und Textformate + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### Bilder, Grafiken und Diagramme + * **Rasterbilder:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### Andere + * **Netz:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **Archiv:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **Andere:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "GroupDocs.Viewer-Funktionen" + description: "PDF- und Office-Dokumente nahtlos rendern, anzeigen und konvertieren" + + items: + # feature loop + - icon: "viewhtml" + title: "Dokumente in HTML anzeigen" + content: "Konvertieren Sie Dokumente jeglicher Art mit CSS und SVG in ein HTML-Dokument, das in jedem modernen Webbrowser angezeigt werden kann." + + # feature loop + - icon: "rasterize" + title: "Dokumente rastern" + content: "Rastern Sie jedes unterstützte Dokumentformat in ein Rasterbild, mit anpassbarem Bildformat und Komprimierungsqualität." + + # feature loop + - icon: "sourcecode" + title: "Programmiercodes rendern und hervorheben" + content: "Unterstützung aller gängigen Programmier-, Skript- und Auszeichnungssprachen mit der Möglichkeit, deren Syntax zu analysieren und hervorzuheben." + + # feature loop + - icon: "convertpdf" + title: "In PDF konvertieren" + content: "Dokumente in jedem unterstützten Format können mit anpassbaren Optionen einfach konvertiert und im PDF-Format gespeichert werden." + + # feature loop + - icon: "transform" + title: "Wenden Sie Transformationen an" + content: "Das Ausgabedokument kann während des Renderns transformiert werden – Seiten können gedreht und/oder neu angeordnet werden und Textwasserzeichen können darüber platziert werden." + + # feature loop + - icon: "adjustment" + title: "Anpassung der HTML-Ausgabe" + content: "Ausgabe-HTML-Dokumente, die vom GroupDocs.Viewer generiert werden, können sehr fein abgestimmt werden: Sie können im Stream oder in der Datei gespeichert werden, mit externen oder eingebetteten Ressourcen, Rückrufen usw." + + # feature loop + - icon: "complex" + title: "Unterstützung komplexer Dokumentenstrukturen" + content: "GroupDocs.Viewer unterstützt nicht nur einzelne Dokumente, sondern auch Dateien, die intern eine Liste oder hierarchische Struktur von Dokumenten enthalten, wie E-Mail-Nachrichten mit Anhängen, ZIP-Archive mit internen Dateien in Ordnern, mehrseitige TIFF-Bilder usw." + + # feature loop + - icon: "optimization" + title: "Optimierungsmöglichkeiten" + content: "GroupDocs.Viewer enthält ein anpassbares Cache-Subsystem, das die Ladezeit durch die Verwendung der zwischengespeicherten Versionen der Dokumente verkürzen kann. Außerdem ermöglicht eine Reihe verschiedener Optionen für verschiedene Formate, einige unnötige Teile oder Aspekte von Dokumenten aus der Darstellung auszuschließen (Schriftarten, ausgeblendete Arbeitsblätter, E-Mail-Anhänge), um die Gesamtleistung zu optimieren" + + # feature loop + - icon: "passwordprotected" + title: "Unterstützung passwortgeschützter Dokumente" + content: "GroupDocs.Viewer ermöglicht das Öffnen verschlüsselter Dokumente verschiedener Typen: PDF, WordProcessing, Tabellenkalkulation, Präsentation und andere, indem in den Ladeoptionen ein Passwort angegeben wird." + +############################# Code samples ############################ +code_samples: + enable: true + title: "Codebeispiele" + description: "Einige Anwendungsfälle typischer GroupDocs.Viewer für Python via Java-Operationen" + items: + # code sample loop + - title: "DOCX in HTML rendern" + content: | + Die Eigenschaften der `HtmlViewOptions`-Klasse ermöglichen die Steuerung des Konvertierungsprozesses. Mehr dazu hier: [https://docs.groupdocs.com/viewer/python-net/rendering-to-html/](https://docs.groupdocs.com/viewer/python-net/rendering-to-html/). Sie können beispielsweise alle externen Ressourcen in die HTML-Ausgabedatei einbetten, die Ausgabedatei minimieren und für den Druck optimieren. + {{< landing/code title="Python">}} + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + + // Viewer instanziieren + with gv.Viewer("resume.docx") as viewer: + // Ausgabe-HTML-Optionen festlegen, eine Datei pro Seite + viewOptions = gvo.HtmlViewOptions.for_embedded_resources("page_{0}.html") + // DOCX mit eingebetteten Ressourcen in HTML rendern + viewer.view(viewOptions) + ``` + {{< /landing/code >}} + # code sample loop + - title: "PPTX in PDF exportieren" + content: | + Erstellen Sie eine Instanz der `PdfViewOptions`-Klasse und übergeben Sie sie an die `Viewer.view`-Methode, um eine PowerPoint-PPTX-Datei in PDF zu konvertieren. Die Eigenschaften der `PdfViewOptions`-Klasse ermöglichen die Steuerung des Konvertierungsprozesses. Details finden Sie im folgenden Abschnitt der Dokumentation: [https://docs.groupdocs.com/viewer/python-net/rendering-to-pdf/](https://docs.groupdocs.com/viewer/python-net/rendering-to-pdf/). + {{< landing/code title="Python">}} + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + + // Viewer instanziieren + with gv.Viewer("presentation.pptx") as viewer: + // Ausgabe-PDF-Optionen festlegen + viewOptions = gvo.PdfViewOptions("presentation.pdf") + // PPTX in PDF exportieren + viewer.view(viewOptions) + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "GroupDocs-Produktbewertungen" +# description: "Verlassen Sie sich nicht nur auf unser Wort. Sehen Sie, was andere Entwickler über unsere APIs sagen" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Exzellenter Service und hervorragende Produkte. Sie waren während des GroupDocs.Viewer für .NET-Implementierungsprozesses äußerst hilfsbereit und reaktionsschnell und können sie nur wärmstens empfehlen." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Nach der Implementierung und Verwendung von GroupDocs.Viewer für .NET im Projekt scheint es sehr gut zu funktionieren. Ich habe es mit vielen Dokumenten getestet und bisher so gut. Alles, was ich darauf geworfen habe, wird gut gerendert und sieht genauso gut aus wie in einem PDF-Viewer oder MS Word." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- diff --git a/content/viewer/python-net/_index.en.md b/content/viewer/python-net/_index.en.md new file mode 100644 index 00000000..11834e96 --- /dev/null +++ b/content/viewer/python-net/_index.en.md @@ -0,0 +1,280 @@ +--- +############################# Static ############################ +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: en +product: "Viewer" +product_tag: "viewer" +platform: "Python via .NET" +platform_tag: "python-net" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + + +############################# Head ############################ +head_title: "Python Document Viewer API for PDF Word Excel HTML Images & Emails" +head_description: "Python document viewer & files rendering API. Add PDF viewer, Word viewer, Excel viewer, Image viewer, HTML viewer, Email viewer in Python applications." + +############################# Header ############################ +title: "A Powerful Python API for Streamlined Document Rendering" +description: "Render and View 180+ Document Formats (PDF, HTML, Image) with Powerful APIs and Versatile Configuration Options to develop Python applications." +words: + for: "for" + +actions: + main: "Free PyPI Download" + main_link: "https://pypi.org/project/groupdocs-viewer/" + alt: "Licensing" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/python-net" + title: "Ready to get started?" + description: "Try GroupDocs.Viewer features for free or request a license" + +release: + title: "Version {0} released" + notes: "See what’s new" + downloads: "Downloads" + link: "https://releases.groupdocs.com/viewer/python-net/release-notes/latest/" + +code: + title: "Render PDF files in Python" + more: "More examples" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Python-via-.NET" + install: "pip install GroupDocs.Viewer" + content: | + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + hvo = gvo.HtmlViewOptions + + // Set output HTML options, one file per page + with gv.Viewer("resume.docx") as viewer: + // Instantiate Viewer + opts = hvo.for_embedded_resources("page_{0}.html") + + // Render PDF to HTML with embedded resources + viewer.view(opts) + ``` +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer at a glance" + description: "API to render, display, convert documents, slides, diagrams, and many other document types in Python applications" + features: + # feature loop + - title: "View documents efficiently & reliably" + content: "With GroupDocs.Viewer API you can efficiently render documents of any supportable formats to HTML, JPEG, PNG, and PDF with flexible and powerful options while maintaining content and document structure integrity. GroupDocs.Viewer for Python works on Windows and Linux platforms." + + # feature loop + - title: "Most popular file and document formats are supported" + content: "We support rendering over the 180 most popular file and document formats that include Word, Excel, PDF, PowerPoint, OpenDocument formats family, Archives, Raster and Vector images, e-Books, programming languages and markups, and many other file types, including encrypted files with password protection." + + # feature loop + - title: "Customizable output" + content: "GroupDocs.Viewer allows not only to render the document, but also to control how exactly, which parts of the document should be rendered or now, how they should be rendered, and to apply different transformations to the rendered output." + +############################# Platforms ############################ +platforms: + enable: true + title: "Platform independence" + description: "GroupDocs.Viewer for Python supports the following operating systems, frameworks and package managers" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "Eclipse" + image: "eclipse" + # platform loop + - title: "IntelliJ" + image: "intellij" + # platform loop + - title: "Windows" + image: "windows" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "PyPI" + image: "pypi" + +############################# File formats ############################ +formats: + enable: true + title: "Supported file formats" + description: | + GroupDocs.Viewer for Python via .NET supports operations with the following [file formats](https://docs.groupdocs.com/viewer/python-net/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument and text formats + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### Images, Graphics & Diagrams + * **Raster images:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### Other + * **Web:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **Archives:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **Other:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "GroupDocs.Viewer features" + description: "Seamlessly render, display, and convert PDF and Office Documents" + + items: + # feature loop + - icon: "viewhtml" + title: "View documents in HTML" + content: "Convert document of any type into a HTML document with CSS and SVG, which can be displayed in any modern web-browser." + + # feature loop + - icon: "rasterize" + title: "Rasterize documents" + content: "Rasterize any supportable document format to the raster image, with adjustable image format and compression quality." + + # feature loop + - icon: "sourcecode" + title: "Render and highlight programming codes" + content: "Support of all popular programming, scripting, and markup languages, with ability to parse and highlight their syntax." + + # feature loop + - icon: "convertpdf" + title: "Convert to PDF" + content: "Document of any supportable format can be easily converted and saved to the PDF with adjustable options." + + # feature loop + - icon: "transform" + title: "Apply transformations" + content: "Output document can be transformed during rendering - pages can be rotated and/or rearranged, and text watermark may be placed atop of them." + + # feature loop + - icon: "adjustment" + title: "HTML output adjustment" + content: "Output HTML documents, generated by the GroupDocs.Viewer, can be tuned very finely: it is allowed to save to the stream or file, with external or embedded resources, callbacks and so on." + + # feature loop + - icon: "complex" + title: "Support of complex document structures" + content: "GroupDocs.Viewer supports not only the single documents, but also files, which internally contain a list or hierarchical structure of documents, like email messages with attachments, ZIP archives with internal files within folders, multi-page TIFF images, and so on." + + # feature loop + - icon: "optimization" + title: "Optimization options" + content: "GroupDocs.Viewer contains an adjustable cache subsystem, which can fasten the loading time by using the cached versions of the documents. Also a set of different options for different formats allows to exclude some unnecessary parts or aspects of documents from the rendering (fonts, hidded worksheets, email attachments) to optimize the overall performance" + + # feature loop + - icon: "passwordprotected" + title: "Support of password-protected documents" + content: "GroupDocs.Viewer allows to open the encrypted documents of different types: PDF, WordProcessing, Spreadsheet, Presentation, and other, by specifying a password in the loading options." + +############################# Code samples ############################ +code_samples: + enable: true + title: "Code samples" + description: "Some use cases of typical GroupDocs.Viewer for Python via .NET operations" + items: + # code sample loop + - title: "Render DOCX to HTML" + content: | + The `HtmlViewOptions` class properties allow you to control the conversion process, more on that [here](https://docs.groupdocs.com/viewer/python-net/rendering-to-html/). For instance, you can embed all external resources in the output HTML file, minify the output file, and optimize it for printing. + {{< landing/code title="Python">}} + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + + // Instantiate Viewer + with gv.Viewer("resume.docx") as viewer: + // Set output HTML options, one file per page + viewOptions = gvo.HtmlViewOptions.for_embedded_resources("page_{0}.html") + // Render DOCX to HTML with embedded resources + viewer.view(viewOptions) + ``` + {{< /landing/code >}} + # code sample loop + - title: "Export PPTX to PDF" + content: | + Create a `PdfViewOptions` class instance and pass it to the `Viewer.view` method to convert a PowerPoint PPTX file to PDF. The `PdfViewOptions` class properties allow you to control the conversion process. For instance, you can protect the output PDF file, reorder its pages, and specify the quality of document images. Refer to the [following documentation section](https://docs.groupdocs.com/viewer/python-net/rendering-to-pdf/) for details. + {{< landing/code title="Python">}} + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + + // Instantiate Viewer + with gv.Viewer("presentation.pptx") as viewer: + // Set output PDF options + viewOptions = gvo.PdfViewOptions("presentation.pdf") + // Export PPTX to PDF + viewer.view(viewOptions) + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "GroupDocs products reviews" +# description: "Don't just take our word for it. See what other developers say about our APIs" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Excellent service and excellent products. They were extremely helpful and responsive during the GroupDocs.Viewer for .NET implementation process, can’t recommend them highly enough." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "After implementing and using GroupDocs.Viewer for .NET in the project it looks to be working very well. I have tested with a lot of documents and so far so good. Everything I’ve thrown at it renders nicely and looks just as good as it would in a PDF viewer or MS Word." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- diff --git a/content/viewer/python-net/_index.es.md b/content/viewer/python-net/_index.es.md new file mode 100644 index 00000000..15a15221 --- /dev/null +++ b/content/viewer/python-net/_index.es.md @@ -0,0 +1,280 @@ +--- +############################# Static ############################ +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: es +product: "Viewer" +product_tag: "viewer" +platform: "Python via .NET" +platform_tag: "python-net" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + + +############################# Head ############################ +head_title: "API Visor de Documentos Python para PDF, Word, Excel, HTML, Imágenes y Correos Electrónicos" +head_description: "API de renderizado de archivos y visor de documentos Python. Agregue visor de PDF, visor de Word, visor de Excel, visor de imágenes, visor de HTML y visor de correo electrónico en aplicaciones Python." + +############################# Header ############################ +title: "Una API de Python Potente para la Representación Optimizada de Documentos" +description: "Renderice y visualice más de 180 formatos de documento (PDF, HTML, imagen) con API potentes y opciones de configuración versátiles para desarrollar aplicaciones Python." +words: + for: "for" + +actions: + main: "Descarga Gratuita de PyPI" + main_link: "https://pypi.org/project/groupdocs-viewer/" + alt: "Licencia" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/python-net" + title: "¿Listo para comenzar?" + description: "Pruebe las funciones de GroupDocs.Viewer de forma gratuita o solicite una licencia" + +release: + title: "Versión {0} lanzada" + notes: "Ver qué hay de nuevo" + downloads: "Descargas" + link: "https://releases.groupdocs.com/viewer/python-net/release-notes/latest/" + +code: + title: "Renderizar archivos PDF en Python" + more: "Más ejemplos" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Python-via-.NET" + install: "pip install GroupDocs.Viewer" + content: | + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + hvo = gvo.HtmlViewOptions + + // Establecer opciones HTML de salida, un archivo por página + with gv.Viewer("resume.docx") as viewer: + // Crear una instancia del visor + opts = hvo.for_embedded_resources("page_{0}.html") + + // Renderizar PDF a HTML con recursos incrustados + viewer.view(opts) + ``` +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer de un vistazo" + description: "API para renderizar, mostrar, convertir documentos, diapositivas, diagramas y muchos otros tipos de documentos en aplicaciones Python" + features: + # feature loop + - title: "Visualice documentos de manera eficiente y confiable" + content: "Con la API GroupDocs.Viewer, puede renderizar de manera eficiente documentos de cualquier formato compatible a HTML, JPEG, PNG y PDF con opciones flexibles y potentes, manteniendo la integridad del contenido y la estructura del documento. GroupDocs.Viewer para Python funciona en plataformas Windows y Linux." + + # feature loop + - title: "Se admiten los formatos de archivo y documento más populares" + content: "Admitimos la renderización de más de 180 de los formatos de archivo y documento más populares, que incluyen Word, Excel, PDF, PowerPoint, la familia de formatos OpenDocument, archivos, imágenes ráster y vectoriales, libros electrónicos, lenguajes de programación y lenguajes de marcado, y muchos otros tipos de archivo, incluidos archivos cifrados con protección por contraseña." + + # feature loop + - title: "Salida personalizable" + content: "GroupDocs.Viewer no solo permite renderizar el documento, sino también controlar cómo exactamente, qué partes del documento deben renderizarse o no, cómo deben renderizarse y aplicar diferentes transformaciones a la salida renderizada." + +############################# Platforms ############################ +platforms: + enable: true + title: "Independencia de la plataforma" + description: "GroupDocs.Viewer para Python admite los siguientes sistemas operativos, frameworks y administradores de paquetes" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "Eclipse" + image: "eclipse" + # platform loop + - title: "IntelliJ" + image: "intellij" + # platform loop + - title: "Windows" + image: "windows" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "PyPI" + image: "pypi" + +############################# File formats ############################ +formats: + enable: true + title: "Formatos de archivo admitidos" + description: | + GroupDocs.Viewer para Python a través de .NET admite operaciones con los siguientes formatos de archivo: [enlace formatos de archivo compatibles](https://docs.groupdocs.com/viewer/python-net/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument y formatos de texto + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### Imágenes, gráficos y diagramas + * **Imágenes rasterizadas:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### Otro + * **Web:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **Archivo:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **Otro:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "Funciones de GroupDocs.Viewer" + description: "Represente, visualice y convierta sin problemas documentos PDF y Office" + + items: + # feature loop + - icon: "viewhtml" + title: "Ver documentos en HTML" + content: "Convierta documentos de cualquier tipo en un documento HTML con CSS y SVG, que se puede mostrar en cualquier navegador web moderno." + + # feature loop + - icon: "rasterize" + title: "Rasterizar documentos" + content: "Rasterice cualquier formato de documento compatible a la imagen rasterizada, con formato de imagen ajustable y calidad de compresión." + + # feature loop + - icon: "sourcecode" + title: "Renderizar y resaltar códigos de programación" + content: "Soporte de todos los lenguajes de programación, scripting y marcado populares, con capacidad de analizar y resaltar su sintaxis." + + # feature loop + - icon: "convertpdf" + title: "Convertir a PDF" + content: "Los documentos de cualquier formato compatible se pueden convertir y guardar fácilmente en PDF con opciones ajustables." + + # feature loop + - icon: "transform" + title: "Aplicar transformaciones" + content: "El documento de salida se puede transformar durante la renderización: las páginas se pueden rotar y/o reorganizar, y se puede colocar una marca de agua de texto encima de ellas." + + # feature loop + - icon: "adjustment" + title: "Ajuste de salida HTML" + content: "Los documentos HTML de salida, generados por GroupDocs.Viewer, se pueden ajustar con mucha precisión: se permite guardarlos en una secuencia o archivo, con recursos externos o integrados, devoluciones de llamada, etc." + + # feature loop + - icon: "complex" + title: "Soporte de estructuras de documentos complejas." + content: "GroupDocs.Viewer admite no solo documentos individuales, sino también archivos que contienen internamente una lista o estructura jerárquica de documentos, como mensajes de correo electrónico con archivos adjuntos, archivos ZIP con archivos internos dentro de carpetas, imágenes TIFF de varias páginas, etc." + + # feature loop + - icon: "optimization" + title: "Opciones de optimización" + content: "GroupDocs.Viewer contiene un subsistema de caché ajustable, que puede acelerar el tiempo de carga utilizando las versiones almacenadas en caché de los documentos. Además, un conjunto de diferentes opciones para diferentes formatos permite excluir algunas partes o aspectos innecesarios de los documentos del renderizado (fuentes, hojas de trabajo ocultas, archivos adjuntos de correo electrónico) para optimizar el rendimiento general." + + # feature loop + - icon: "passwordprotected" + title: "Soporte de documentos protegidos con contraseña." + content: "GroupDocs.Viewer permite abrir documentos cifrados de diferentes tipos: PDF, WordProcessing, Hoja de cálculo, Presentación y otros, especificando una contraseña en las opciones de carga." + +############################# Code samples ############################ +code_samples: + enable: true + title: "Ejemplos de código" + description: "Algunos casos de uso de operaciones típicas de GroupDocs.Viewer para Python a través de .NET" + items: + # code sample loop + - title: "Renderizar DOCX a HTML" + content: | + Las propiedades de la clase `HtmlViewOptions` le permiten controlar el proceso de conversión. Para obtener más información, consulte [aquí](https://docs.groupdocs.com/viewer/python-net/rendering-to-html/). Por ejemplo, puede incrustar todos los recursos externos en el archivo HTML de salida, minimizar el archivo de salida y optimizarlo para la impresión. + {{< landing/code title="Python">}} + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + + // Crear una instancia del visor + with gv.Viewer("resume.docx") as viewer: + // Establecer opciones HTML de salida, un archivo por página + viewOptions = gvo.HtmlViewOptions.for_embedded_resources("page_{0}.html") + // Renderizar DOCX a HTML con recursos incrustados + viewer.view(viewOptions) + ``` + {{< /landing/code >}} + # code sample loop + - title: "Exportar PPTX a PDF" + content: | + Cree una instancia de la clase `PdfViewOptions` y pásesela al método `Viewer.view` para convertir un archivo PowerPoint PPTX a PDF. Las propiedades de la clase `PdfViewOptions` le permiten controlar el proceso de conversión. Consulte la siguiente sección de la documentación para obtener más detalles: [enlace a la sección de conversión a PDF](https://docs.groupdocs.com/viewer/python-net/rendering-to-pdf/) + {{< landing/code title="Python">}} + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + + // Crear una instancia del visor + with gv.Viewer("presentation.pptx") as viewer: + // Establecer opciones PDF de salida + viewOptions = gvo.PdfViewOptions("presentation.pdf") + // Exportar PPTX a PDF + viewer.view(viewOptions) + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "Reseñas de productos GroupDocs" +# description: "No confíe sólo en nuestra palabra. Vea lo que otros desarrolladores dicen sobre nuestras API" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Excelente servicio y excelentes productos. Fueron extremadamente útiles y receptivos durante el proceso de implementación de GroupDocs.Viewer para .NET, no puedo recomendarlos lo suficiente." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Después de implementar y usar GroupDocs.Viewer para .NET en el proyecto, parece estar funcionando muy bien. He probado con muchos documentos y hasta ahora todo bien. Todo lo que le he añadido se reproduce muy bien y se ve tan bien como en un visor de PDF o MS Word." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- diff --git a/content/viewer/python-net/_index.fa.md b/content/viewer/python-net/_index.fa.md new file mode 100644 index 00000000..be5958e5 --- /dev/null +++ b/content/viewer/python-net/_index.fa.md @@ -0,0 +1,280 @@ +--- +############################# Static ############################ +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: fa +product: "Viewer" +product_tag: "viewer" +platform: "Python via .NET" +platform_tag: "python-net" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + + +############################# Head ############################ +head_title: "API نمایشگر اسناد پایتون برای PDF، Word، Excel، HTML، تصاویر و ایمیل‌ها" +head_description: "API نمایشگر اسناد و رندر فایل پایتون. نمایشگر PDF، نمایشگر Word، نمایشگر Excel، نمایشگر تصویر، نمایشگر HTML و نمایشگر ایمیل را به برنامه‌های Python اضافه کنید." + +############################# Header ############################ +title: "یک API قدرتمند پایتون برای نمایش بهینه اسناد" +description: "رندر و نمایش بیش از 180 فرمت سند (PDF، HTML، تصویر) با API های قدرتمند و گزینه های پیکربندی متنوع برای توسعه برنامه های پایتون." +words: + for: "for" + +actions: + main: "دانلود رایگان PyPI" + main_link: "https://pypi.org/project/groupdocs-viewer/" + alt: "صدور مجوز" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/python-net" + title: "برای شروع آماده اید؟" + description: "ویژگی های GroupDocs.Viewer را به صورت رایگان امتحان کنید یا درخواست مجوز کنید" + +release: + title: "نسخه {0} منتشر شد" + notes: "ببینید چه چیزی جدید است" + downloads: "دانلودها" + link: "https://releases.groupdocs.com/viewer/python-net/release-notes/latest/" + +code: + title: "رندر فایل‌های PDF در پایتون" + more: "نمونه های بیشتر" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Python-via-.NET" + install: "pip install GroupDocs.Viewer" + content: | + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + hvo = gvo.HtmlViewOptions + + // تنظیم گزینه‌های خروجی HTML، یک فایل در هر صفحه + with gv.Viewer("resume.docx") as viewer: + // ایجاد نمونه اولیه نمایشگر + opts = hvo.for_embedded_resources("page_{0}.html") + + // رندر PDF به HTML با منابع جاسازی شده + viewer.view(opts) + ``` +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer در یک نگاه" + description: "API برای رندر، نمایش، تبدیل اسناد، اسلایدها، نمودارها و بسیاری از انواع دیگر اسناد در برنامه های کاربردی پایتون" + features: + # feature loop + - title: "اسناد را به طور کارآمد و قابل اعتماد مشاهده کنید" + content: "با API GroupDocs.Viewer، می‌توانید اسناد با هر فرمت پشتیبانی‌شده را به طور کارآمد به HTML، JPEG، PNG و PDF با گزینه‌های انعطاف‌پذیر و قدرتمند رندر کنید، در حالی که یکپارچگی محتوا و ساختار سند حفظ می‌شود. GroupDocs.Viewer برای پایتون روی پلتفرم‌های ویندوز و لینوکس کار می‌کند." + + # feature loop + - title: "پشتیبانی از محبوب‌ترین فرمت‌های فایل و سند" + content: "ما از رندر بیش از 180 فرمت محبوب فایل و سند از جمله Word، Excel، PDF، PowerPoint، خانواده فرمت‌های OpenDocument، آرشیوها، تصاویر رستر و برداری، کتاب‌های الکترونیکی، زبان‌های برنامه‌نویسی و نشانه‌گذاری و بسیاری از انواع فایل‌های دیگر، از جمله فایل‌های رمزگذاری‌شده با رمز عبور پشتیبانی می‌کنیم." + + # feature loop + - title: "خروجی قابل تنظیم" + content: "GroupDocs.Viewer نه تنها رندر سند را امکان پذیر می کند، بلکه کنترل اینکه دقیقاً کدام قسمت های سند رندر شوند یا نشوند، چگونه رندر شوند و اعمال تحولات مختلف روی خروجی رندر شده را نیز امکان پذیر می کند." + +############################# Platforms ############################ +platforms: + enable: true + title: "استقلال از پلتفرم" + description: "GroupDocs.Viewer برای پایتون از سیستم‌عامل‌ها، فریم‌ورک‌ها و مدیریت بسته‌های زیر پشتیبانی می‌کند" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "Eclipse" + image: "eclipse" + # platform loop + - title: "IntelliJ" + image: "intellij" + # platform loop + - title: "Windows" + image: "windows" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "PyPI" + image: "pypi" + +############################# File formats ############################ +formats: + enable: true + title: "فرمت های فایل پشتیبانی شده" + description: | + GroupDocs.Viewer برای پایتون از طریق .NET از عملیات با فرمت‌های فایل زیر پشتیبانی می‌کند: [لینک به فرمت‌های فایل پشتیبانی‌شده](https://docs.groupdocs.com/viewer/python-net/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### مایکروسافت آفیس، OpenDocument و فرمت های متنی + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### تصاویر، گرافیک و نمودارها + * **تصاویر شطرنجی:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### دیگر + * **وب:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **آرشیوها:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **دیگر:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "ویژگی های GroupDocs.Viewer" + description: "رندر، نمایش، و تبدیل یکپارچه PDF و اسناد آفیس" + + items: + # feature loop + - icon: "viewhtml" + title: "مشاهده اسناد در HTML" + content: "هر نوع سندی را با CSS و SVG به یک سند HTML تبدیل کنید، که می تواند در هر مرورگر وب مدرن نمایش داده شود." + + # feature loop + - icon: "rasterize" + title: "اسناد را شطرنجی کنید" + content: "هر قالب سند قابل پشتیبانی را با فرمت تصویر قابل تنظیم و کیفیت فشرده سازی به تصویر شطرنجی تبدیل کنید." + + # feature loop + - icon: "sourcecode" + title: "کدهای برنامه نویسی را رندر و برجسته کنید" + content: "پشتیبانی از همه زبان‌های برنامه‌نویسی، اسکریپت‌نویسی و نشانه‌گذاری محبوب، با قابلیت تجزیه و برجسته کردن نحو آنها." + + # feature loop + - icon: "convertpdf" + title: "تبدیل به PDF" + content: "سند با هر فرمت قابل پشتیبانی را می توان به راحتی با گزینه های قابل تنظیم به PDF تبدیل و ذخیره کرد." + + # feature loop + - icon: "transform" + title: "تغییرات را اعمال کنید" + content: "سند خروجی را می توان در حین رندر تبدیل کرد - صفحات را می توان چرخاند و/یا مرتب کرد و واترمارک متنی در بالای آنها قرار داد." + + # feature loop + - icon: "adjustment" + title: "تنظیم خروجی HTML" + content: "اسناد HTML خروجی، تولید شده توسط GroupDocs.Viewer، را می توان بسیار دقیق تنظیم کرد: امکان ذخیره در جریان یا فایل، با منابع خارجی یا جاسازی شده، تماس های برگشتی و غیره وجود دارد." + + # feature loop + - icon: "complex" + title: "پشتیبانی از ساختارهای پیچیده سند" + content: "GroupDocs.Viewer نه تنها از اسناد منفرد، بلکه از فایل‌هایی نیز پشتیبانی می‌کند که در داخل شامل فهرست یا ساختار سلسله مراتبی از اسناد هستند، مانند پیام‌های ایمیل با پیوست‌ها، آرشیوهای ZIP با فایل‌های داخلی درون پوشه‌ها، تصاویر TIFF چند صفحه‌ای و غیره." + + # feature loop + - icon: "optimization" + title: "گزینه های بهینه سازی" + content: "GroupDocs.Viewer حاوی یک زیرسیستم کش قابل تنظیم است که می تواند با استفاده از نسخه های ذخیره شده اسناد، زمان بارگذاری را تسریع بخشد. همچنین مجموعه ای از گزینه های مختلف برای فرمت های مختلف اجازه می دهد تا برخی از بخش ها یا جنبه های غیر ضروری اسناد را از رندر حذف کنید (فونت ها، کاربرگ های مخفی، پیوست های ایمیل) برای بهینه سازی عملکرد کلی." + + # feature loop + - icon: "passwordprotected" + title: "پشتیبانی از اسناد محافظت شده با رمز عبور" + content: "GroupDocs.Viewer اجازه می دهد تا اسناد رمزگذاری شده را از انواع مختلف باز کنید: PDF، WordProcessing، Spreadsheet، Presentation و غیره، با تعیین رمز عبور در گزینه های بارگیری." + +############################# Code samples ############################ +code_samples: + enable: true + title: "نمونه های کد" + description: "برخی از موارد استفاده از GroupDocs معمولی.بیننده برای پایتون از طریق. net عملیات" + items: + # code sample loop + - title: "رندر DOCX به HTML" + content: | + ویژگی های کلاس `HtmlViewOptions` به شما امکان کنترل فرآیند تبدیل را می دهد. برای اطلاعات بیشتر، [اینجا](https://docs.groupdocs.com/viewer/python-net/rendering-to-html/) را ببینید. برای مثال، می توانید تمام منابع خارجی را در فایل خروجی HTML جاسازی کنید، فایل خروجی را به حداقل برسانید و آن را برای چاپ بهینه کنید. + {{< landing/code title="Python">}} + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + + // ایجاد نمونه از Viewer + with gv.Viewer("resume.docx") as viewer: + // تنظیم گزینه های خروجی HTML، یک فایل در هر صفحه + viewOptions = gvo.HtmlViewOptions.for_embedded_resources("page_{0}.html") + // رندر DOCX به HTML با منابع جاسازی شده + viewer.view(viewOptions) + ``` + {{< /landing/code >}} + # code sample loop + - title: "خروجی گرفتن PPTX به PDF" + content: | + یک نمونه از کلاس `PdfViewOptions` ایجاد کنید و آن را به متد `Viewer.view` برای تبدیل یک فایل پاورپوینت PPTX به PDF منتقل کنید. ویژگی های کلاس `PdfViewOptions` به شما امکان کنترل فرآیند تبدیل را می دهد. برای جزئیات بیشتر، بخش بعدی اسناد را در [اینجا](https://docs.groupdocs.com/viewer/python-net/rendering-to-pdf/) ببینید. + {{< landing/code title="Python">}} + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + + // ایجاد نمونه از Viewer + with gv.Viewer("presentation.pptx") as viewer: + // تنظیم گزینه های خروجی PDF + viewOptions = gvo.PdfViewOptions("presentation.pdf") + // خروجی گرفتن PPTX به PDF + viewer.view(viewOptions) + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "بررسی محصولات GroupDocs" +# description: "فقط حرف ما را قبول نکنید. ببینید سایر توسعه دهندگان در مورد API های ما چه می گویند" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "خدمات عالی و محصولات عالی. آنها در طول فرآیند اجرای GroupDocs.Viewer برای دات نت بسیار مفید و پاسخگو بودند، نمی توان آنها را به اندازه کافی توصیه کرد." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "پس از پیاده سازی و استفاده از GroupDocs.Viewer برای دات نت در پروژه، به نظر می رسد که بسیار خوب کار می کند. من با مدارک زیادی تست کردم و تا الان خیلی خوبه. همه چیزهایی که به آن پرتاب کرده‌ام به خوبی رندر می‌شوند و به همان خوبی که در یک نمایشگر PDF یا MS Word به نظر می‌رسند." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- diff --git a/content/viewer/python-net/_index.fr.md b/content/viewer/python-net/_index.fr.md new file mode 100644 index 00000000..71195a2f --- /dev/null +++ b/content/viewer/python-net/_index.fr.md @@ -0,0 +1,280 @@ +--- +############################# Static ############################ +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: fr +product: "Viewer" +product_tag: "viewer" +platform: "Python via .NET" +platform_tag: "python-net" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + + +############################# Head ############################ +head_title: "API visionneuse de documents Python pour PDF, Word, Excel, HTML, images et e-mails" +head_description: "API de rendu de fichiers et de visionneuse de documents Python. Ajoutez un visionneur de PDF, un visionneur de Word, un visionneur Excel, une visionneuse d'images, un visionneur HTML et un visionneur de courrier électronique aux applications Python." + +############################# Header ############################ +title: "Une API Python puissante pour le rendu optimisé de documents" +description: "Rendu et affichage de plus de 180 formats de document (PDF, HTML, image) avec des API puissantes et des options de configuration polyvalentes pour développer des applications Python." +words: + for: "for" + +actions: + main: "Téléchargement gratuit de PyPI" + main_link: "https://pypi.org/project/groupdocs-viewer/" + alt: "Licence" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/python-net" + title: "Prêt à commencer?" + description: "Essayez les fonctionnalités de GroupDocs.Viewer gratuitement ou demandez une licence" + +release: + title: "Version {0} publiée" + notes: "Nouveautés" + downloads: "Téléchargements" + link: "https://releases.groupdocs.com/viewer/python-net/release-notes/latest/" + +code: + title: "Rendu de fichiers PDF en Python" + more: "Plus d'exemples" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Python-via-.NET" + install: "pip install GroupDocs.Viewer" + content: | + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + hvo = gvo.HtmlViewOptions + + // Définir les options HTML de sortie, un fichier par page + with gv.Viewer("resume.docx") as viewer: + // Créer une instance de la visionneuse + opts = hvo.for_embedded_resources("page_{0}.html") + + // Rendu de PDF en HTML avec des ressources intégrées + viewer.view(opts) + ``` +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer en un coup d'œil" + description: "API pour le rendu, l'affichage et la conversion de documents, de diapositives, de diagrammes et de nombreux autres types de documents dans les applications Python" + features: + # feature loop + - title: "Afficher les documents de manière efficace et fiable" + content: "Avec l'API GroupDocs.Viewer, vous pouvez rendre efficacement des documents de tous les formats pris en charge au format HTML, JPEG, PNG et PDF avec des options flexibles et puissantes, tout en conservant l'intégrité du contenu et de la structure du document. GroupDocs.Viewer pour Python fonctionne sur les plateformes Windows et Linux." + + # feature loop + - title: "Prise en charge de la plupart des formats de fichiers et de documents courants" + content: "Nous prenons en charge le rendu de plus de 180 des formats de fichiers et de documents les plus courants, notamment Word, Excel, PDF, PowerPoint, les formats OpenDocument, les archives, les images matricielles et vectorielles, les livres électroniques, les langages de programmation et de balisage, ainsi que de nombreux autres types de fichiers, y compris les fichiers chiffrés protégés par mot de passe." + + # feature loop + - title: "Sortie personnalisable" + content: "GroupDocs.Viewer permet non seulement de rendre le document, mais aussi de contrôler comment, quelles parties du document doivent être rendues ou non, comment elles doivent être rendues et d'appliquer différentes transformations à la sortie rendue." + +############################# Platforms ############################ +platforms: + enable: true + title: "Indépendance de la plateforme" + description: "GroupDocs.Viewer pour Python prend en charge les systèmes d'exploitation, les frameworks et les gestionnaires de paquets suivants" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "Eclipse" + image: "eclipse" + # platform loop + - title: "IntelliJ" + image: "intellij" + # platform loop + - title: "Windows" + image: "windows" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "PyPI" + image: "pypi" + +############################# File formats ############################ +formats: + enable: true + title: "Formats de fichiers pris en charge" + description: | + GroupDocs.Viewer pour Python via .NET prend en charge les opérations avec les formats de fichier suivants: [lien vers les formats de fichier pris en charge](https://docs.groupdocs.com/viewer/python-net/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument et formats texte + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### Images, graphiques et diagrammes + * **Images rastées:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### Autre + * **la toile:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **Les archives:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **Autre:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "Fonctionnalités de GroupDocs.Viewer" + description: "Rendre, afficher et convertir en toute transparence des documents PDF et Office" + + items: + # feature loop + - icon: "viewhtml" + title: "Afficher les documents en HTML" + content: "Convertissez un document de n'importe quel type en un document HTML avec CSS et SVG, qui peut être affiché dans n'importe quel navigateur Web moderne." + + # feature loop + - icon: "rasterize" + title: "Pixelliser les documents" + content: "Pixellisez n'importe quel format de document pris en charge sur l'image raster, avec un format d'image et une qualité de compression réglables." + + # feature loop + - icon: "sourcecode" + title: "Restituer et mettre en évidence les codes de programmation" + content: "Prise en charge de tous les langages de programmation, de script et de balisage populaires, avec possibilité d'analyser et de mettre en évidence leur syntaxe." + + # feature loop + - icon: "convertpdf" + title: "Convertir en PDF" + content: "Les documents de n'importe quel format pris en charge peuvent être facilement convertis et enregistrés au format PDF avec des options réglables." + + # feature loop + - icon: "transform" + title: "Appliquer des transformations" + content: "Le document de sortie peut être transformé pendant le rendu - les pages peuvent être pivotées et/ou réorganisées et un filigrane de texte peut être placé dessus." + + # feature loop + - icon: "adjustment" + title: "Ajustement de la sortie HTML" + content: "Les documents HTML de sortie, générés par GroupDocs.Viewer, peuvent être réglés très finement: il est permis de les enregistrer dans le flux ou dans un fichier, avec des ressources externes ou intégrées, des rappels, etc." + + # feature loop + - icon: "complex" + title: "Prise en charge de structures de documents complexes" + content: "GroupDocs.Viewer prend en charge non seulement les documents uniques, mais également les fichiers qui contiennent en interne une liste ou une structure hiérarchique de documents, comme des messages électroniques avec pièces jointes, des archives ZIP avec des fichiers internes dans des dossiers, des images TIFF multipages, etc." + + # feature loop + - icon: "optimization" + title: "Options d'optimisation" + content: "GroupDocs.Viewer contient un sous-système de cache réglable, qui peut réduire le temps de chargement en utilisant les versions mises en cache des documents. De plus, un ensemble d'options différentes pour différents formats permet d'exclure du rendu certaines parties ou aspects inutiles des documents (polices, feuilles de calcul masquées, pièces jointes aux e-mails) pour optimiser les performances globales." + + # feature loop + - icon: "passwordprotected" + title: "Prise en charge des documents protégés par mot de passe" + content: "GroupDocs.Viewer permet d'ouvrir les documents cryptés de différents types : PDF, WordProcessing, Spreadsheet, Présentation et autres, en spécifiant un mot de passe dans les options de chargement." + +############################# Code samples ############################ +code_samples: + enable: true + title: "Exemples de code" + description: "Quelques cas d'utilisation d'opérations GroupDocs.Viewer typiques pour Python via .NET" + items: + # code sample loop + - title: "Rendu de DOCX en HTML" + content: | + Les propriétés de la classe `HtmlViewOptions` vous permettent de contrôler le processus de conversion. Pour plus d'informations, consultez [ici](https://docs.groupdocs.com/viewer/python-net/rendering-to-html/). Par exemple, vous pouvez incorporer toutes les ressources externes dans le fichier HTML de sortie, minimiser le fichier de sortie et l'optimiser pour l'impression. + {{< landing/code title="Python">}} + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + + // Créer une instance de Viewer + with gv.Viewer("resume.docx") as viewer: + // Définir les options HTML de sortie, un fichier par page + viewOptions = gvo.HtmlViewOptions.for_embedded_resources("page_{0}.html") + // Rendu de DOCX en HTML avec des ressources intégrées + viewer.view(viewOptions) + ``` + {{< /landing/code >}} + # code sample loop + - title: "Exporter PPTX au format PDF" + content: | + Créez une instance de la classe `PdfViewOptions` et transmettez-la à la méthode `Viewer.view` pour convertir un fichier PowerPoint PPTX en PDF. Les propriétés de la classe `PdfViewOptions` vous permettent de contrôler le processus de conversion. Par exemple, vous pouvez protéger le fichier PDF de sortie, réorganiser ses pages et spécifier la qualité des images du document. Consultez la [section suivante de la documentation](https://docs.groupdocs.com/viewer/python-net/rendering-to-pdf/) pour plus de détails. + {{< landing/code title="Python">}} + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + + // Créer une instance de Viewer + with gv.Viewer("presentation.pptx") as viewer: + // Définir les options de sortie PDF + viewOptions = gvo.PdfViewOptions("presentation.pdf") + // Exporter PPTX au format PDF + viewer.view(viewOptions) + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "Avis sur les produits GroupDocs" +# description: "Ne vous contentez pas de nous croire sur parole. Découvrez ce que d'autres développeurs disent de nos API" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Excellent service et excellents produits. Ils ont été extrêmement utiles et réactifs pendant le processus de mise en œuvre de GroupDocs.Viewer pour .NET, et ne sauraient les recommander assez." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Après avoir implémenté et utilisé GroupDocs.Viewer pour .NET dans le projet, cela semble très bien fonctionner. J'ai testé avec beaucoup de documents et jusqu'ici tout va bien. Tout ce que j'ai lancé s'affiche bien et est aussi beau que dans une visionneuse PDF ou MS Word." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- diff --git a/content/viewer/python-net/_index.id.md b/content/viewer/python-net/_index.id.md new file mode 100644 index 00000000..ca092cc3 --- /dev/null +++ b/content/viewer/python-net/_index.id.md @@ -0,0 +1,280 @@ +--- +############################# Static ############################ +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: id +product: "Viewer" +product_tag: "viewer" +platform: "Python via .NET" +platform_tag: "python-net" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + + +############################# Head ############################ +head_title: "API Penampil Dokumen Python untuk PDF, Word, Excel, HTML, Gambar & Email" +head_description: "API rendering file dan penampil dokumen Python. Tambahkan penampil PDF, penampil Word, penampil Excel, penampil Gambar, penampil HTML, dan penampil Email ke aplikasi Python." + +############################# Header ############################ +title: "API Python yang Kuat untuk Rendering Dokumen yang Dioptimalkan" +description: "Render dan tampilkan lebih dari 180 format dokumen (PDF, HTML, Gambar) dengan API yang kuat dan opsi konfigurasi yang serbaguna untuk mengembangkan aplikasi Python." +words: + for: "for" + +actions: + main: "Unduh Gratis dari PyPI" + main_link: "https://pypi.org/project/groupdocs-viewer/" + alt: "Perizinan" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/python-net" + title: "Siap untuk memulai?" + description: "Coba fitur GroupDocs.Viewer secara gratis atau minta lisensi" + +release: + title: "Versi {0} dirilis" + notes: "Lihat apa yang baru" + downloads: "Unduhan" + link: "https://releases.groupdocs.com/viewer/python-net/release-notes/latest/" + +code: + title: "Rendering File PDF di Python" + more: "Lebih banyak contoh" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Python-via-.NET" + install: "pip install GroupDocs.Viewer" + content: | + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + hvo = gvo.HtmlViewOptions + + // Atur opsi HTML keluaran, satu file per halaman + with gv.Viewer("resume.docx") as viewer: + // Buat Instance Penampil + opts = hvo.for_embedded_resources("page_{0}.html") + + // Render PDF ke HTML dengan sumber daya yang tertanam + viewer.view(opts) + ``` +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer Sekilas" + description: "API untuk rendering, tampilan, dan konversi dokumen, slide, diagram, dan banyak jenis dokumen lainnya dalam aplikasi Python" + features: + # feature loop + - title: "Lihat dokumen secara efisien dan andal" + content: "Dengan GroupDocs.Viewer API, Anda dapat dengan efisien membuat rendering dokumen dari semua format yang didukung ke HTML, JPEG, PNG, dan PDF dengan opsi yang fleksibel dan kuat, sambil mempertahankan integritas konten dan struktur dokumen. GroupDocs.Viewer untuk Python berfungsi pada platform Windows dan Linux." + + # feature loop + - title: "Mendukung sebagian besar format file dan dokumen umum" + content: "Kami mendukung rendering lebih dari 180 format file dan dokumen yang paling populer, termasuk Word, Excel, PDF, PowerPoint, keluarga format OpenDocument, Arsip, Gambar Raster dan Vektor, eBook, bahasa pemrograman dan markup, dan banyak lagi jenis file lainnya, termasuk file terenkripsi dengan perlindungan kata sandi." + + # feature loop + - title: "Keluaran yang Dapat Dikustomisasi" + content: "GroupDocs.Viewer memungkinkan tidak hanya untuk membuat rendering dokumen, tetapi juga untuk mengontrol bagaimana tepatnya, bagian mana dari dokumen yang harus dirender atau tidak, bagaimana mereka harus dirender, dan menerapkan transformasi yang berbeda ke keluaran yang dirender." + +############################# Platforms ############################ +platforms: + enable: true + title: "Independensi Platform" + description: "GroupDocs.Viewer untuk Python mendukung sistem operasi, framework, dan pengelola paket berikut" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "Eclipse" + image: "eclipse" + # platform loop + - title: "IntelliJ" + image: "intellij" + # platform loop + - title: "Windows" + image: "windows" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "PyPI" + image: "pypi" + +############################# File formats ############################ +formats: + enable: true + title: "Format file yang didukung" + description: | + GroupDocs.Viewer untuk Python via .NET mendukung operasi dengan format file berikut: [format file yang didukung](https://docs.groupdocs.com/viewer/python-net/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument dan format teks + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### Gambar, Grafik & Diagram + * **Gambar raster:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### Lainnya + * **jaring:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **Arsip:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **Lainnya:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "Fitur GroupDocs.Viewer" + description: "Render, tampilkan, dan konversi PDF dan Dokumen Office dengan lancar" + + items: + # feature loop + - icon: "viewhtml" + title: "Lihat dokumen dalam HTML" + content: "Ubah dokumen jenis apa pun menjadi dokumen HTML dengan CSS dan SVG, yang dapat ditampilkan di browser web modern mana pun." + + # feature loop + - icon: "rasterize" + title: "Rasterisasi dokumen" + content: "Rasterisasi format dokumen apa pun yang didukung ke gambar raster, dengan format gambar dan kualitas kompresi yang dapat disesuaikan." + + # feature loop + - icon: "sourcecode" + title: "Render dan sorot kode pemrograman" + content: "Dukungan untuk semua bahasa pemrograman, skrip, dan markup populer, dengan kemampuan untuk mengurai dan menyorot sintaksisnya." + + # feature loop + - icon: "convertpdf" + title: "Konversikan ke PDF" + content: "Dokumen format apa pun yang didukung dapat dengan mudah dikonversi dan disimpan ke PDF dengan opsi yang dapat disesuaikan." + + # feature loop + - icon: "transform" + title: "Terapkan transformasi" + content: "Dokumen keluaran dapat diubah selama rendering - halaman dapat diputar dan/atau disusun ulang, dan tanda air teks dapat ditempatkan di atasnya." + + # feature loop + - icon: "adjustment" + title: "Penyesuaian keluaran HTML" + content: "Dokumen HTML keluaran, yang dihasilkan oleh GroupDocs.Viewer, dapat disetel dengan sangat baik: diperbolehkan untuk menyimpan ke aliran atau file, dengan sumber daya eksternal atau tertanam, panggilan balik, dan sebagainya." + + # feature loop + - icon: "complex" + title: "Dukungan struktur dokumen yang kompleks" + content: "GroupDocs.Viewer tidak hanya mendukung satu dokumen, tetapi juga file, yang secara internal berisi daftar atau struktur hierarki dokumen, seperti pesan email dengan lampiran, arsip ZIP dengan file internal di dalam folder, gambar TIFF multi-halaman, dan sebagainya." + + # feature loop + - icon: "optimization" + title: "Opsi pengoptimalan" + content: "GroupDocs.Viewer berisi subsistem cache yang dapat disesuaikan, yang dapat mempercepat waktu pemuatan dengan menggunakan versi dokumen yang di-cache. Juga serangkaian opsi berbeda untuk format berbeda memungkinkan untuk mengecualikan beberapa bagian atau aspek dokumen yang tidak diperlukan dari rendering (font, lembar kerja tersembunyi, lampiran email) untuk mengoptimalkan kinerja keseluruhan" + + # feature loop + - icon: "passwordprotected" + title: "Dukungan dokumen yang dilindungi kata sandi" + content: "GroupDocs.Viewer memungkinkan untuk membuka dokumen terenkripsi dari berbagai jenis: PDF, WordProcessing, Spreadsheet, Presentasi, dan lainnya, dengan menentukan kata sandi dalam opsi pemuatan." + +############################# Code samples ############################ +code_samples: + enable: true + title: "Contoh kode" + description: "Beberapa kasus penggunaan operasi GroupDocs.Viewer khas untuk Python via .NET" + items: + # code sample loop + - title: "Render DOCX ke HTML" + content: | + Properti kelas `HtmlViewOptions` memungkinkan Anda untuk mengontrol proses konversi, lebih lanjut tentang itu [di sini](https://docs.groupdocs.com/viewer/python-net/rendering-to-html/). Misalnya, Anda dapat menyematkan semua sumber daya eksternal dalam file HTML keluaran, memperkecil file keluaran, dan mengoptimalkannya untuk pencetakan. + {{< landing/code title="Python">}} + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + + // Buat Instance Penampil + with gv.Viewer("resume.docx") as viewer: + // Atur opsi HTML keluaran, satu file per halaman + viewOptions = gvo.HtmlViewOptions.for_embedded_resources("page_{0}.html") + // Render PDF ke HTML dengan sumber daya yang tertanam + viewer.view(viewOptions) + ``` + {{< /landing/code >}} + # code sample loop + - title: "Ekspor PPTX ke PDF" + content: | + Buat instance kelas `PdfViewOptions` dan berikan ke metode `Viewer.view` untuk mengonversi file PowerPoint PPTX ke PDF. Properti kelas `PdfViewOptions` memungkinkan Anda untuk mengontrol proses konversi. Misalnya, Anda dapat melindungi file PDF keluaran, menyusun ulang halamannya, dan menentukan kualitas gambar dokumen. Lihat [bagian dokumentasi berikut](https://docs.groupdocs.com/viewer/python-net/rendering-to-pdf/) untuk detailnya. + {{< landing/code title="Python">}} + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + + // Buat Instance Penampil + with gv.Viewer("presentation.pptx") as viewer: + // Set output PDF options (Atur opsi PDF keluaran) + viewOptions = gvo.PdfViewOptions("presentation.pdf") + // Ekspor PPTX ke PDF (Export PPTX to PDF) + viewer.view(viewOptions) + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "Ulasan produk GroupDocs" +# description: "Jangan hanya percaya kata-kata kami begitu saja. Lihat apa yang dikatakan pengembang lain tentang API kami" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Pelayanan prima dan produk unggulan. Mereka sangat membantu dan responsif selama proses implementasi GroupDocs.Viewer untuk .NET, dan sangat merekomendasikannya." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Setelah mengimplementasikan dan menggunakan GroupDocs.Viewer untuk .NET dalam proyek tersebut tampaknya berfungsi dengan baik. Saya telah menguji dengan banyak dokumen dan sejauh ini bagus. Semua yang saya berikan ditampilkan dengan baik dan terlihat sama bagusnya dengan penampil PDF atau MS Word." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- diff --git a/content/viewer/python-net/_index.it.md b/content/viewer/python-net/_index.it.md new file mode 100644 index 00000000..20a66367 --- /dev/null +++ b/content/viewer/python-net/_index.it.md @@ -0,0 +1,280 @@ +--- +############################# Static ############################ +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: it +product: "Viewer" +product_tag: "viewer" +platform: "Python via .NET" +platform_tag: "python-net" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + + +############################# Head ############################ +head_title: "API di visualizzazione di documenti Python per PDF Word Excel HTML Immagini ed e-mail" +head_description: "API di rendering file e visualizzatore documenti Python. Aggiungi visualizzatore PDF, visualizzatore Word, visualizzatore Excel, visualizzatore immagini, visualizzatore HTML e visualizzatore email alle applicazioni Python." + +############################# Header ############################ +title: "Una potente API Python per il rendering ottimizzato dei documenti" +description: "Esegui il rendering e visualizza oltre 180 formati di documento (PDF, HTML, immagine) con potenti API e opzioni di configurazione versatili per lo sviluppo di applicazioni Python." +words: + for: "for" + +actions: + main: "Download gratuito da PyPI" + main_link: "https://pypi.org/project/groupdocs-viewer/" + alt: "Licenza" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/python-net" + title: "Pronto per iniziare?" + description: "Prova gratuitamente le funzionalità di GroupDocs.Viewer o richiedi una licenza" + +release: + title: "Versione {0} rilasciata" + notes: "Scopri le novità" + downloads: "Download" + link: "https://releases.groupdocs.com/viewer/python-net/release-notes/latest/" + +code: + title: "Rendering di file PDF in Python" + more: "Altri esempi" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Python-via-.NET" + install: "pip install GroupDocs.Viewer" + content: | + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + hvo = gvo.HtmlViewOptions + + // Imposta le opzioni HTML di output, un file per pagina + with gv.Viewer("resume.docx") as viewer: + // Crea un'istanza del visualizzatore + opts = hvo.for_embedded_resources("page_{0}.html") + + // Rendering di PDF in HTML con risorse incorporate + viewer.view(opts) + ``` +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer in sintesi" + description: "API per il rendering, la visualizzazione e la conversione di documenti, diapositive, diagrammi e molti altri tipi di documenti nelle applicazioni Python" + features: + # feature loop + - title: "Visualizza i documenti in modo efficiente e affidabile" + content: "Con GroupDocs.Viewer API, puoi eseguire in modo efficiente il rendering di documenti di qualsiasi formato supportato in HTML, JPEG, PNG e PDF con opzioni flessibili e potenti, mantenendo al contempo l'integrità del contenuto e della struttura del documento. GroupDocs.Viewer per Python funziona su piattaforme Windows e Linux." + + # feature loop + - title: "Supporta la maggior parte dei formati di file e documenti comuni" + content: "Supportiamo il rendering di oltre 180 formati di file e documenti più diffusi, inclusi Word, Excel, PDF, PowerPoint, la famiglia di formati OpenDocument, archivi, immagini raster e vettoriali, eBook, linguaggi di programmazione e markup e molti altri tipi di file, inclusi file crittografati con protezione tramite password." + + # feature loop + - title: "Output personalizzabile" + content: "GroupDocs.Viewer consente non solo di eseguire il rendering del documento, ma anche di controllare come esattamente, quali parti del documento devono essere renderizzate o meno, come devono essere renderizzate e di applicare diverse trasformazioni all'output renderizzato." + +############################# Platforms ############################ +platforms: + enable: true + title: "Indipendenza dalla piattaforma" + description: "GroupDocs.Viewer per Python supporta i seguenti sistemi operativi, framework e gestori pacchetti" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "Eclipse" + image: "eclipse" + # platform loop + - title: "IntelliJ" + image: "intellij" + # platform loop + - title: "Windows" + image: "windows" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "PyPI" + image: "pypi" + +############################# File formats ############################ +formats: + enable: true + title: "Formati di file supportati" + description: | + GroupDocs.Viewer per Python tramite .NET supporta le operazioni con i seguenti formati di file: [formati di file supportati](https://docs.groupdocs.com/viewer/python-net/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument e formati di testo + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### Immagini, grafica e diagrammi + * **Immagini raster:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### Altro + * **ragnatela:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **Archivi:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **Altro:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "Funzionalità di GroupDocs.Viewer" + description: "Esegue il rendering, la visualizzazione e la conversione di documenti PDF e Office senza problemi" + + items: + # feature loop + - icon: "viewhtml" + title: "Visualizza i documenti in HTML" + content: "Converti documenti di qualsiasi tipo in un documento HTML con CSS e SVG, che può essere visualizzato in qualsiasi browser web moderno." + + # feature loop + - icon: "rasterize" + title: "Rasterizzare i documenti" + content: "Rasterizza qualsiasi formato di documento supportabile nell'immagine raster, con formato immagine e qualità di compressione regolabili." + + # feature loop + - icon: "sourcecode" + title: "Restituisci ed evidenzia i codici di programmazione" + content: "Supporto di tutti i linguaggi di programmazione, scripting e markup più diffusi, con capacità di analizzare ed evidenziare la loro sintassi." + + # feature loop + - icon: "convertpdf" + title: "Converti in PDF" + content: "I documenti di qualsiasi formato supportato possono essere facilmente convertiti e salvati nel PDF con opzioni regolabili." + + # feature loop + - icon: "transform" + title: "Applicare trasformazioni" + content: "Il documento di output può essere trasformato durante il rendering: le pagine possono essere ruotate e/o riorganizzate e la filigrana di testo può essere posizionata sopra di esse." + + # feature loop + - icon: "adjustment" + title: "Regolazione dell'output HTML" + content: "I documenti HTML di output, generati da GroupDocs.Viewer, possono essere ottimizzati in modo molto preciso: è consentito salvare nello stream o nel file, con risorse esterne o incorporate, callback e così via." + + # feature loop + - icon: "complex" + title: "Supporto di strutture documentali complesse" + content: "GroupDocs.Viewer supporta non solo i singoli documenti, ma anche i file che contengono internamente un elenco o una struttura gerarchica di documenti, come messaggi di posta elettronica con allegati, archivi ZIP con file interni all'interno di cartelle, immagini TIFF multipagina e così via." + + # feature loop + - icon: "optimization" + title: "Opzioni di ottimizzazione" + content: "GroupDocs.Viewer contiene un sottosistema di cache regolabile, che può ridurre i tempi di caricamento utilizzando le versioni dei documenti memorizzate nella cache. Inoltre una serie di diverse opzioni per diversi formati consente di escludere alcune parti o aspetti non necessari dei documenti dal rendering (caratteri, fogli di lavoro nascosti, allegati e-mail) per ottimizzare le prestazioni complessive" + + # feature loop + - icon: "passwordprotected" + title: "Supporto di documenti protetti da password" + content: "GroupDocs.Viewer consente di aprire documenti crittografati di diversi tipi: PDF, elaborazione testi, fogli di calcolo, presentazioni e altri, specificando una password nelle opzioni di caricamento." + +############################# Code samples ############################ +code_samples: + enable: true + title: "Esempi di codice" + description: "Alcuni casi d'uso tipici delle operazioni di GroupDocs.Viewer per Python tramite .NET" + items: + # code sample loop + - title: "Rendering di DOCX in HTML" + content: | + Le proprietà della classe `HtmlViewOptions` consentono di controllare il processo di conversione. Per ulteriori informazioni, consulta [qui](https://docs.groupdocs.com/viewer/python-net/rendering-to-html/). Ad esempio, è possibile incorporare tutte le risorse esterne nel file HTML di output, ridurre le dimensioni del file e ottimizzarlo per la stampa. + {{< landing/code title="Python">}} + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + + // Crea un'istanza del visualizzatore + with gv.Viewer("resume.docx") as viewer: + // Imposta le opzioni HTML di output, un file per pagina + viewOptions = gvo.HtmlViewOptions.for_embedded_resources("page_{0}.html") + // Rendering di PDF in HTML con risorse incorporate + viewer.view(viewOptions) + ``` + {{< /landing/code >}} + # code sample loop + - title: "Esportazione di PPTX in PDF" + content: | + Creare un'istanza della classe `PdfViewOptions` e passarla al metodo `Viewer.view` per convertire un file PowerPoint PPTX in PDF. Le proprietà della classe `PdfViewOptions` consentono di controllare il processo di conversione. Ad esempio, è possibile proteggere il file PDF di output, riordinarne le pagine e specificare la qualità delle immagini del documento. Consulta la [seguente sezione della documentazione](https://docs.groupdocs.com/viewer/python-net/rendering-to-pdf/) per i dettagli. + {{< landing/code title="Python">}} + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + + // Crea un'istanza del visualizzatore + with gv.Viewer("presentation.pptx") as viewer: + // Imposta le opzioni di output PDF (Set output PDF options) + viewOptions = gvo.PdfViewOptions("presentation.pdf") + // Esporta PPTX in PDF (Export PPTX to PDF) + viewer.view(viewOptions) + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "Recensioni dei prodotti GroupDocs" +# description: "Non limitarti a crederci sulla parola. Scopri cosa dicono gli altri sviluppatori sulle nostre API" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Servizio eccellente e prodotti eccellenti. Si sono rivelati estremamente utili e reattivi durante il processo di implementazione di GroupDocs.Viewer per .NET, non posso che consigliarli vivamente." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Dopo aver implementato e utilizzato GroupDocs.Viewer for .NET nel progetto sembra funzionare molto bene. Ho testato con molti documenti e finora tutto bene. Tutto ciò che ho inserito viene visualizzato bene e ha lo stesso aspetto di un visualizzatore PDF o MS Word." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- diff --git a/content/viewer/python-net/_index.ja.md b/content/viewer/python-net/_index.ja.md new file mode 100644 index 00000000..e3d3a028 --- /dev/null +++ b/content/viewer/python-net/_index.ja.md @@ -0,0 +1,280 @@ +--- +############################# Static ############################ +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: ja +product: "Viewer" +product_tag: "viewer" +platform: "Python via .NET" +platform_tag: "python-net" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + + +############################# Head ############################ +head_title: "PythonドキュメントビューアーAPI (PDF、Word、Excel、HTML、画像、電子メール向け)" +head_description: "PythonファイルレンダリングおよびドキュメントビューアーAPI。PythonアプリケーションにPDFビューアー、Wordビューアー、Excelビューアー、画像ビューアー、HTMLビューアー、および電子メールビューアーを追加します。" + +############################# Header ############################ +title: "最適化されたドキュメントレンダリングのための強力なPython API" +description: "強力なAPIと汎用的な構成オプションを使用して、Pythonアプリケーションで180を超えるドキュメント形式 (PDF、HTML、画像) をレンダリングして表示します。" +words: + for: "for" + +actions: + main: "PyPIから無料でダウンロード" + main_link: "https://pypi.org/project/groupdocs-viewer/" + alt: "ライセンス" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/python-net" + title: "始める準備はできていますか?" + description: "GroupDocs.Viewer の機能を無料で試すか、ライセンスをリクエストしてください" + +release: + title: "{0} がリリースされました" + notes: "新機能を見る" + downloads: "ダウンロード" + link: "https://releases.groupdocs.com/viewer/python-net/release-notes/latest/" + +code: + title: "PythonでのPDFファイルのレンダリング" + more: "他の例" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Python-via-.NET" + install: "pip install GroupDocs.Viewer" + content: | + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + hvo = gvo.HtmlViewOptions + + // 出力HTMLオプションを設定 (1ページあたりの1ファイル) + with gv.Viewer("resume.docx") as viewer: + // ビューアーをインスタンス化 + opts = hvo.for_embedded_resources("page_{0}.html") + + // 埋め込みリソースを使用したPDFからHTMLへのレンダリング + viewer.view(opts) + ``` +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewerの概要" + description: "Pythonアプリケーションでドキュメント、スライド、図表、およびその他の多くのドキュメントタイプのレンダリング、表示、変換を行うためのAPI" + features: + # feature loop + - title: "ドキュメントを効率的かつ確実に表示" + content: "GroupDocs.Viewer APIを使用すると、サポートされているすべての形式のドキュメントを柔軟で強力なオプションを使用してHTML、JPEG、PNG、およびPDFに効率的にレンダリングでき、コンテンツとドキュメント構造の整合性を維持できます。GroupDocs.Viewer for Pythonは、WindowsおよびLinuxプラットフォームで動作します。" + + # feature loop + - title: "最も人気のあるファイル形式とドキュメント形式がサポートされています" + content: "Word、Excel、PDF、PowerPoint、OpenDocument形式ファミリ、アーカイブ、ラスターおよびベクター画像、電子ブック、プログラミング言語とマークアップ、およびパスワード保護による暗号化ファイルを含む、180を超える最も人気のあるファイル形式とドキュメント形式のレンダリングをサポートしています。" + + # feature loop + - title: "カスタマイズ可能な出力" + content: "GroupDocs.Viewerを使用すると、ドキュメントのレンダリングだけでなく、レンダリングする必要のあるドキュメントの部分を正確に制御したり、レンダリング方法を制御したり、レンダリングされた出力にさまざまな変換を適用したりすることもできます。" + +############################# Platforms ############################ +platforms: + enable: true + title: "プラットフォーム非依存性" + description: "GroupDocs.Viewer for Pythonは、以下のオペレーティングシステム、フレームワーク、およびパッケージマネージャーをサポートしています" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "Eclipse" + image: "eclipse" + # platform loop + - title: "IntelliJ" + image: "intellij" + # platform loop + - title: "Windows" + image: "windows" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "PyPI" + image: "pypi" + +############################# File formats ############################ +formats: + enable: true + title: "サポートされているファイル形式" + description: | + GroupDocs.Viewer for Python (via .NET)は、以下のファイル形式に対する操作をサポートしています: [サポートされているファイル形式](https://docs.groupdocs.com/viewer/python-net/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office、OpenDocument、およびテキスト形式 + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### 画像、グラフィック、図表 + * **ラスター画像:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### 他の + * **ウェブ:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **アーカイブ:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **他の:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "GroupDocs.Viewer の機能" + description: "PDF および Office ドキュメントをシームレスにレンダリング、表示、変換" + + items: + # feature loop + - icon: "viewhtml" + title: "HTML でドキュメントを表示する" + content: "CSS と SVG を使用して、あらゆる種類のドキュメントを HTML ドキュメントに変換し、最新の Web ブラウザで表示できます。" + + # feature loop + - icon: "rasterize" + title: "ドキュメントをラスタライズする" + content: "サポート可能なドキュメント形式をラスター画像にラスター化し、画像形式と圧縮品質を調整できます。" + + # feature loop + - icon: "sourcecode" + title: "プログラミング コードのレンダリングとハイライト表示" + content: "すべての一般的なプログラミング、スクリプト、マークアップ言語をサポートし、構文を解析して強調表示する機能を備えています。" + + # feature loop + - icon: "convertpdf" + title: "PDFに変換" + content: "サポート可能な形式のドキュメントは、調整可能なオプションを使用して簡単に PDF に変換して保存できます。" + + # feature loop + - icon: "transform" + title: "変換を適用する" + content: "出力ドキュメントはレンダリング中に変換できます。ページは回転および/または再配置でき、テキストの透かしをその上に配置できます。" + + # feature loop + - icon: "adjustment" + title: "HTML出力調整" + content: "GroupDocs.Viewer によって生成される出力 HTML ドキュメントは、非常に細かく調整できます。外部リソースまたは埋め込みリソース、コールバックなどを使用して、ストリームまたはファイルに保存できます。" + + # feature loop + - icon: "complex" + title: "複雑な文書構造のサポート" + content: "GroupDocs.Viewer は、単一のドキュメントだけでなく、添付ファイル付きの電子メール メッセージ、フォルダー内の内部ファイルを含む ZIP アーカイブ、複数ページの TIFF 画像など、ドキュメントのリストまたは階層構造を内部に含むファイルもサポートします。" + + # feature loop + - icon: "optimization" + title: "最適化オプション" + content: "GroupDocs.Viewer には、ドキュメントのキャッシュされたバージョンを使用することで読み込み時間を短縮できる、調整可能なキャッシュ サブシステムが含まれています。また、さまざまな形式に対応するさまざまなオプションのセットにより、ドキュメントの一部の不必要な部分や側面 (フォント、非表示のワークシート、電子メールの添付ファイル) をレンダリングから除外して、全体的なパフォーマンスを最適化することができます。" + + # feature loop + - icon: "passwordprotected" + title: "パスワードで保護されたドキュメントのサポート" + content: "GroupDocs.Viewer を使用すると、読み込みオプションでパスワードを指定することで、PDF、WordProcessing、スプレッドシート、プレゼンテーションなど、さまざまな種類の暗号化されたドキュメントを開くことができます。" + +############################# Code samples ############################ +code_samples: + enable: true + title: "コードサンプル" + description: "Python経由の.Netを使用したGroupDocs.Viewerの操作の典型的なユースケース" + items: + # code sample loop + - title: "DOCXをHTMLに変換" + content: | + ``HtmlViewOptions`` クラスのプロパティを使用すると、変換プロセスを制御できます。詳細については、[こちら](https://docs.groupdocs.com/viewer/python-net/rendering-to-html/)を参照してください。 たとえば、すべての外部リソースを出力HTMLファイルに埋め込む、出力ファイルを圧縮する、印刷用に最適化することができます。 + {{< landing/code title="Python">}} + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + + // ビューアーをインスタンス化 + with gv.Viewer("resume.docx") as viewer: + // 出力HTMLオプションを設定 (1ページあたりの1ファイル) + viewOptions = gvo.HtmlViewOptions.for_embedded_resources("page_{0}.html") + // 埋め込みリソースを使用したPDFからHTMLへのレンダリング + viewer.view(viewOptions) + ``` + {{< /landing/code >}} + # code sample loop + - title: "PPTXをPDFにエクスポート" + content: | + ``PdfViewOptions`` クラスのインスタンスを作成し、``Viewer.view`` メソッドに渡して、PowerPoint PPTXファイルをPDFに変換します。 ``PdfViewOptions`` クラスのプロパティを使用すると、変換プロセスを制御できます。たとえば、出力PDFファイルを保護したり、ページの順序を変更したり、ドキュメントの画像の品質を指定したりできます。詳細については、[次のドキュメントセクション](https://docs.groupdocs.com/viewer/python-net/rendering-to-pdf/)を参照してください。 + {{< landing/code title="Python">}} + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + + // ビューアーをインスタンス化 + with gv.Viewer("presentation.pptx") as viewer: + // 出力PDFオプションを設定 (Set output PDF options) + viewOptions = gvo.PdfViewOptions("presentation.pdf") + // PPTXをPDFにエクスポート (Export PPTX to PDF) + viewer.view(viewOptions) + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "GroupDocs 製品のレビュー" +# description: "私たちの言葉をそのまま鵜呑みにしないでください。他の開発者の API についての意見をご覧ください" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "優れたサービスと優れた製品。これらは、GroupDocs.Viewer for .NET の実装プロセス中に非常に役に立ち、迅速に対応してくれましたが、あまりお勧めできません。" +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "GroupDocs.Viewer for .NET をプロジェクトに実装して使用した後、非常にうまく機能しているように見えます。多くのドキュメントを使用してテストしましたが、これまでのところ良好です。私が投げたものはすべてうまくレンダリングされ、PDF ビューアーや MS Word と同じくらい見栄えがよくなります。" +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- diff --git a/content/viewer/python-net/_index.ko.md b/content/viewer/python-net/_index.ko.md new file mode 100644 index 00000000..7be81a4e --- /dev/null +++ b/content/viewer/python-net/_index.ko.md @@ -0,0 +1,280 @@ +--- +############################# Static ############################ +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: ko +product: "Viewer" +product_tag: "viewer" +platform: "Python via .NET" +platform_tag: "python-net" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + + +############################# Head ############################ +head_title: "Python 문서 뷰어 API (PDF, Word, Excel, HTML, 이미지, 이메일)" +head_description: "Python 파일 렌더링 및 문서 뷰어 API입니다. Python 애플리케이션에 PDF 뷰어, Word 뷰어, Excel 뷰어, 이미지 뷰어, HTML 뷰어, 이메일 뷰어를 추가하세요." + +############################# Header ############################ +title: "최적화된 문서 렌더링을 위한 강력한 Python API" +description: "강력한 API 및 다양한 구성 옵션을 사용하여 Python 애플리케이션에서 180개 이상의 문서 형식(PDF, HTML, 이미지)을 렌더링하고 표시하세요." +words: + for: "for" + +actions: + main: "PyPI에서 무료 다운로드" + main_link: "https://pypi.org/project/groupdocs-viewer/" + alt: "라이선스" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/python-net" + title: "시작할 준비가 되셨나요?" + description: "GroupDocs.Viewer 기능을 무료로 사용해 보거나 라이선스를 요청하세요" + +release: + title: "버전 {0} 출시됨" + notes: "새로운 소식 보기" + downloads: "다운로드" + link: "https://releases.groupdocs.com/viewer/python-net/release-notes/latest/" + +code: + title: "Python에서의 PDF 파일 렌더링" + more: "더 많은 예시" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Python-via-.NET" + install: "pip install GroupDocs.Viewer" + content: | + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + hvo = gvo.HtmlViewOptions + + // 출력 HTML 옵션 설정 (1페이지당 1개 파일) + with gv.Viewer("resume.docx") as viewer: + // 뷰어 인스턴스화 + opts = hvo.for_embedded_resources("page_{0}.html") + + // 埋め込み 리소스를 사용한 PDF에서 HTML로의 렌더링 + viewer.view(opts) + ``` +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer 개요" + description: "Python 애플리케이션에서 문서, 슬라이드, 다이어그램 및 기타 여러 문서 유형의 렌더링, 표시, 변환을 위한 API" + features: + # feature loop + - title: "문서를 효율적이고 안정적으로 보기" + content: "GroupDocs.Viewer API를 사용하면 지원되는 모든 형식의 문서를 유연하고 강력한 옵션을 사용하여 HTML, JPEG, PNG 및 PDF로 효율적으로 렌더링할 수 있으며, 콘텐츠 및 문서 구조의 무결성을 유지할 수 있습니다. GroupDocs.Viewer for Python은 Windows 및 Linux 플랫폼에서 작동합니다." + + # feature loop + - title: "가장 인기 있는 파일 형식과 문서 형식이 지원됩니다" + content: "Word, Excel, PDF, PowerPoint, OpenDocument 형식 제품군, 아카이브, 래스터 및 벡터 이미지, 전자책, 프로그래밍 언어 및 마크업, 암호 보호 암호화 파일을 포함하여 180개 이상의 가장 인기 있는 파일 형식과 문서 형식의 렌더링을 지원합니다." + + # feature loop + - title: "사용자 정의 가능한 출력" + content: "GroupDocs.Viewer를 사용하면 문서 렌더링뿐만 아니라 렌더링해야 하는 문서 부분을 정확하게 제어하거나, 렌더링 방법을 제어하거나, 렌더링된 출력에 다양한 변환을 적용할 수도 있습니다." + +############################# Platforms ############################ +platforms: + enable: true + title: "플랫폼 독립성" + description: "GroupDocs.Viewer for Python은 다음 운영 체제, 프레임워크 및 패키지 관리자를 지원합니다" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "Eclipse" + image: "eclipse" + # platform loop + - title: "IntelliJ" + image: "intellij" + # platform loop + - title: "Windows" + image: "windows" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "PyPI" + image: "pypi" + +############################# File formats ############################ +formats: + enable: true + title: "지원되는 파일 형식" + description: | + GroupDocs.Viewer for Python (via .NET)은 다음 파일 형식에 대한 작업을 지원합니다: [지원되는 파일 형식](https://docs.groupdocs.com/viewer/python-net/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument 및 텍스트 형식 + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### 이미지, 그래픽 및 다이어그램 + * **래스터 이미지:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### 다른 + * **편물:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **아카이브:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **다른:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "GroupDocs.Viewer 기능" + description: "PDF 및 Office 문서를 원활하게 렌더링, 표시 및 변환합니다." + + items: + # feature loop + - icon: "viewhtml" + title: "HTML로 문서 보기" + content: "모든 유형의 문서를 CSS 및 SVG를 사용하여 최신 웹 브라우저에서 표시할 수 있는 HTML 문서로 변환합니다." + + # feature loop + - icon: "rasterize" + title: "문서 래스터화" + content: "조정 가능한 이미지 형식과 압축 품질을 사용하여 지원 가능한 모든 문서 형식을 래스터 이미지로 래스터화합니다." + + # feature loop + - icon: "sourcecode" + title: "프로그래밍 코드 렌더링 및 강조 표시" + content: "구문을 분석하고 강조 표시하는 기능을 통해 널리 사용되는 모든 프로그래밍, 스크립팅 및 마크업 언어를 지원합니다." + + # feature loop + - icon: "convertpdf" + title: "PDF로 변환" + content: "지원되는 모든 형식의 문서는 조정 가능한 옵션을 사용하여 쉽게 변환하고 PDF로 저장할 수 있습니다." + + # feature loop + - icon: "transform" + title: "변환 적용" + content: "출력 문서는 렌더링 중에 변형될 수 있습니다. 페이지를 회전 및/또는 재배열할 수 있으며 텍스트 워터마크가 페이지 위에 배치될 수 있습니다." + + # feature loop + - icon: "adjustment" + title: "HTML 출력 조정" + content: "GroupDocs.Viewer에 의해 생성된 출력 HTML 문서는 매우 세밀하게 조정될 수 있습니다. 외부 또는 내장 리소스, 콜백 등과 함께 스트림이나 파일에 저장할 수 있습니다." + + # feature loop + - icon: "complex" + title: "복잡한 문서 구조 지원" + content: "GroupDocs.Viewer는 단일 문서뿐만 아니라 첨부 파일이 있는 이메일 메시지, 폴더 내에 내부 파일이 있는 ZIP 아카이브, 다중 페이지 TIFF 이미지 등과 같은 문서의 목록 또는 계층 구조를 내부적으로 포함하는 파일도 지원합니다." + + # feature loop + - icon: "optimization" + title: "최적화 옵션" + content: "GroupDocs.Viewer에는 캐시된 문서 버전을 사용하여 로딩 시간을 단축할 수 있는 조정 가능한 캐시 하위 시스템이 포함되어 있습니다. 또한 다양한 형식에 대한 다양한 옵션 세트를 사용하면 렌더링에서 문서의 불필요한 부분이나 측면(글꼴, 숨겨진 워크시트, 이메일 첨부 파일)을 제외하여 전반적인 성능을 최적화할 수 있습니다." + + # feature loop + - icon: "passwordprotected" + title: "비밀번호로 보호된 문서 지원" + content: "GroupDocs.Viewer를 사용하면 로딩 옵션에 비밀번호를 지정하여 PDF, 워드프로세싱, 스프레드시트, 프리젠테이션 등 다양한 유형의 암호화된 문서를 열 수 있습니다." + +############################# Code samples ############################ +code_samples: + enable: true + title: "코드 샘플" + description: "Python을 통한 .Net를 사용한 GroupDocs.Viewer 작업의 일반적인 사용 사례" + items: + # code sample loop + - title: "DOCX를 HTML로 변환" + content: | + ``HtmlViewOptions`` 클래스의 속성을 사용하면 변환 프로세스를 제어할 수 있습니다. 자세한 내용은 [여기](https://docs.groupdocs.com/viewer/python-net/rendering-to-html/)를 참조하십시오. 예를 들어 모든 외부 리소스를 출력 HTML 파일에 삽입하고, 출력 파일을 압축하며, 인쇄用に 최적화할 수 있습니다. + {{< landing/code title="Python">}} + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + + // 뷰어 인스턴스화 + with gv.Viewer("resume.docx") as viewer: + // 출력 HTML 옵션 설정 (1페이지당 1개 파일) + viewOptions = gvo.HtmlViewOptions.for_embedded_resources("page_{0}.html") + // 埋め込み 리소스를 사용한 PDF에서 HTML로의 렌더링 + viewer.view(viewOptions) + ``` + {{< /landing/code >}} + # code sample loop + - title: "PPTX를 PDF로 내보내기" + content: | + ``PdfViewOptions`` 클래스의 인스턴스를 만들어 ``Viewer.view`` 메서드에 전달하여 PowerPoint PPTX 파일을 PDF로 변환합니다. ``PdfViewOptions`` 클래스의 속성을 사용하면 변환 프로세스를 제어할 수 있습니다. 예를 들어 출력 PDF 파일을 보호하거나, 페이지 순서를 변경하거나, 문서 이미지의 품질을 지정할 수 있습니다. 자세한 내용은 [다음 문서 섹션](https://docs.groupdocs.com/viewer/python-net/rendering-to-pdf/)을 참조하십시오. + {{< landing/code title="Python">}} + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + + // 뷰어 인스턴스화 + with gv.Viewer("presentation.pptx") as viewer: + // 출력 PDF 옵션 설정 (Set output PDF options) + viewOptions = gvo.PdfViewOptions("presentation.pdf") + // PPTX를 PDF로 내보내기 (Export PPTX to PDF) + viewer.view(viewOptions) + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "GroupDocs 제품 리뷰" +# description: "우리의 말만 받아들이지 마십시오. 다른 개발자가 우리 API에 대해 어떻게 말하는지 확인하세요." + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "우수한 서비스와 우수한 제품. .NET용 GroupDocs.Viewer 구현 프로세스 동안 매우 도움이 되고 응답이 빨랐기 때문에 충분히 추천할 수는 없습니다." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "프로젝트에서 .NET용 GroupDocs.Viewer를 구현하고 사용한 후에는 매우 잘 작동하는 것으로 보입니다. 나는 많은 문서를 가지고 테스트해 보았는데 지금까지는 아주 좋았다. 내가 던진 모든 것은 PDF 뷰어나 MS Word에서와 마찬가지로 멋지게 렌더링되고 보기에도 좋습니다." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- diff --git a/content/viewer/python-net/_index.pt.md b/content/viewer/python-net/_index.pt.md new file mode 100644 index 00000000..e5f89c29 --- /dev/null +++ b/content/viewer/python-net/_index.pt.md @@ -0,0 +1,280 @@ +--- +############################# Static ############################ +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: pt +product: "Viewer" +product_tag: "viewer" +platform: "Python via .NET" +platform_tag: "python-net" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + + +############################# Head ############################ +head_title: "API visualizador de documentos Python para PDF, Word, Excel, HTML, imagens e e-mail" +head_description: "API de renderização de arquivos e visualizador de documentos Python. Adicione visualizador de PDF, visualizador de Word, visualizador de Excel, visualizador de imagens, visualizador de HTML e visualizador de e-mail aos aplicativos Python." + +############################# Header ############################ +title: "API Python poderosa para renderização otimizada de documentos" +description: "Renderize e visualize mais de 180 formatos de documento (PDF, HTML, imagem) com APIs robustas e opções de configuração versáteis para o desenvolvimento de aplicativos Python." +words: + for: "for" + +actions: + main: "Download gratuito do PyPI" + main_link: "https://pypi.org/project/groupdocs-viewer/" + alt: "Licenciamento" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/python-net" + title: "Pronto para começar?" + description: "Experimente os recursos do GroupDocs.Viewer gratuitamente ou solicite uma licença" + +release: + title: "Versão {0} lançada" + notes: "Veja o que é novo" + downloads: "Transferências" + link: "https://releases.groupdocs.com/viewer/python-net/release-notes/latest/" + +code: + title: "Renderização de arquivo PDF em Python" + more: "Mais exemplos" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Python-via-.NET" + install: "pip install GroupDocs.Viewer" + content: | + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + hvo = gvo.HtmlViewOptions + + // Defina as opções de saída HTML, um arquivo por página + with gv.Viewer("resume.docx") as viewer: + // Crie uma instância do visualizador + opts = hvo.for_embedded_resources("page_{0}.html") + + // Renderização de PDF em HTML com recursos incorporados + viewer.view(opts) + ``` +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer em resumo" + description: "API para renderização, visualização e conversão de documentos, slides, diagramas e muitos outros tipos de documentos em aplicativos Python" + features: + # feature loop + - title: "Visualize documentos de forma eficiente e confiável" + content: "Com a API GroupDocs.Viewer, você pode renderizar documentos de todos os formatos suportados com eficiência em HTML, JPEG, PNG e PDF com opções flexíveis e robustas, mantendo a integridade do conteúdo e da estrutura do documento. O GroupDocs.Viewer para Python funciona nas plataformas Windows e Linux." + + # feature loop + - title: "Suporta a maioria dos formatos de arquivo e documento comuns" + content: "Suportamos a renderização de mais de 180 formatos de arquivo e documento mais populares, incluindo Word, Excel, PDF, PowerPoint, a família de formatos OpenDocument, arquivos, imagens raster e vetoriais, eBooks, linguagens de programação e marcação e muitos outros tipos de arquivo, incluindo arquivos criptografados com proteção por senha." + + # feature loop + - title: "Saída personalizável" + content: "O GroupDocs.Viewer permite não apenas renderizar o documento, mas também controlar como exatamente quais partes do documento devem ser renderizadas ou não, como devem ser renderizadas e aplicar diferentes transformações à saída renderizada." + +############################# Platforms ############################ +platforms: + enable: true + title: "Independência de plataforma" + description: "O GroupDocs.Viewer para Python oferece suporte aos seguintes sistemas operacionais, frameworks e gerenciadores de pacotes" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "Eclipse" + image: "eclipse" + # platform loop + - title: "IntelliJ" + image: "intellij" + # platform loop + - title: "Windows" + image: "windows" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "PyPI" + image: "pypi" + +############################# File formats ############################ +formats: + enable: true + title: "Formatos de arquivo suportados" + description: | + O GroupDocs.Viewer para Python (via .NET) oferece suporte a operações com os seguintes formatos de arquivo: [formatos de arquivo suportados](https://docs.groupdocs.com/viewer/python-net/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument e formatos de texto + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### Imagens, gráficos e diagramas + * **Imagens rasterizadas:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### Outro + * **Rede:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **Arquivos:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **Outro:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "Recursos do GroupDocs.Viewer" + description: "Renderize, exiba e converta perfeitamente documentos PDF e Office" + + items: + # feature loop + - icon: "viewhtml" + title: "Ver documentos em HTML" + content: "Converta documentos de qualquer tipo em um documento HTML com CSS e SVG, que pode ser exibido em qualquer navegador moderno." + + # feature loop + - icon: "rasterize" + title: "Rasterizar documentos" + content: "Rasterize qualquer formato de documento compatível para a imagem rasterizada, com formato de imagem e qualidade de compactação ajustáveis." + + # feature loop + - icon: "sourcecode" + title: "Renderizar e destacar códigos de programação" + content: "Suporte para todas as linguagens populares de programação, script e marcação, com capacidade de analisar e destacar sua sintaxe." + + # feature loop + - icon: "convertpdf" + title: "Converter para PDF" + content: "Documentos de qualquer formato compatível podem ser facilmente convertidos e salvos em PDF com opções ajustáveis." + + # feature loop + - icon: "transform" + title: "Aplicar transformações" + content: "O documento de saída pode ser transformado durante a renderização - as páginas podem ser giradas e/ou reorganizadas e uma marca d’água de texto pode ser colocada sobre elas." + + # feature loop + - icon: "adjustment" + title: "Ajuste de saída HTML" + content: "Os documentos HTML de saída, gerados pelo GroupDocs.Viewer, podem ser ajustados com muita precisão: é permitido salvar no fluxo ou arquivo, com recursos externos ou incorporados, retornos de chamada e assim por diante." + + # feature loop + - icon: "complex" + title: "Suporte de estruturas de documentos complexas" + content: "GroupDocs.Viewer suporta não apenas documentos únicos, mas também arquivos, que contêm internamente uma lista ou estrutura hierárquica de documentos, como mensagens de e-mail com anexos, arquivos ZIP com arquivos internos dentro de pastas, imagens TIFF de várias páginas e assim por diante." + + # feature loop + - icon: "optimization" + title: "Opções de otimização" + content: "GroupDocs.Viewer contém um subsistema de cache ajustável, que pode acelerar o tempo de carregamento usando as versões em cache dos documentos. Além disso, um conjunto de diferentes opções para diferentes formatos permite excluir algumas partes ou aspectos desnecessários dos documentos da renderização (fontes, planilhas ocultas, anexos de e-mail) para otimizar o desempenho geral." + + # feature loop + - icon: "passwordprotected" + title: "Suporte de documentos protegidos por senha" + content: "GroupDocs.Viewer permite abrir documentos criptografados de diversos tipos: PDF, WordProcessing, Planilha, Apresentação e outros, especificando uma senha nas opções de carregamento." + +############################# Code samples ############################ +code_samples: + enable: true + title: "Exemplos de código" + description: "Alguns casos de uso de operações típicas do GroupDocs.Viewer para Python via .NET" + items: + # code sample loop + - title: "Renderização de DOCX em HTML" + content: | + As propriedades da classe `HtmlViewOptions` permitem controlar o processo de conversão. Para obter mais informações, consulte [aqui](https://docs.groupdocs.com/viewer/python-net/rendering-to-html/). Por exemplo, você pode incorporar todos os recursos externos no arquivo HTML de saída, reduzir o tamanho do arquivo e otimizá-lo para impressão. + {{< landing/code title="Python">}} + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + + // Crie uma instância do visualizador + with gv.Viewer("resume.docx") as viewer: + // Defina as opções de saída HTML, um arquivo por página + viewOptions = gvo.HtmlViewOptions.for_embedded_resources("page_{0}.html") + // Renderização de PDF em HTML com recursos incorporados + viewer.view(viewOptions) + ``` + {{< /landing/code >}} + # code sample loop + - title: "Exportação de PPTX em PDF" + content: | + Crie uma instância da classe `PdfViewOptions` e passe-a para o método `Viewer.view` para converter um arquivo PowerPoint PPTX em PDF. As propriedades da classe `PdfViewOptions` permitem controlar o processo de conversão. Por exemplo, você pode proteger o arquivo PDF de saída, reorganizar suas páginas e especificar a qualidade das imagens do documento. Consulte a [seguinte seção da documentação](https://docs.groupdocs.com/viewer/python-net/rendering-to-pdf/) para obter detalhes. + {{< landing/code title="Python">}} + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + + // Crie uma instância do visualizador + with gv.Viewer("presentation.pptx") as viewer: + // Defina as opções de saída de PDF (Set output PDF options) + viewOptions = gvo.PdfViewOptions("presentation.pdf") + // Exporte PPTX para PDF (Export PPTX to PDF) + viewer.view(viewOptions) + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "Avaliações de produtos GroupDocs" +# description: "Não acredite apenas na nossa palavra. Veja o que outros desenvolvedores dizem sobre nossas APIs" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Excelente atendimento e excelentes produtos. Eles foram extremamente úteis e receptivos durante o processo de implementação do GroupDocs.Viewer para .NET, não posso recomendá-los o suficiente." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Depois de implementar e usar o GroupDocs.Viewer for .NET no projeto, parece estar funcionando muito bem. Eu testei com muitos documentos e até agora tudo bem. Tudo o que joguei nele é renderizado perfeitamente e parece tão bom quanto em um visualizador de PDF ou MS Word." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- diff --git a/content/viewer/python-net/_index.ru.md b/content/viewer/python-net/_index.ru.md new file mode 100644 index 00000000..647a13aa --- /dev/null +++ b/content/viewer/python-net/_index.ru.md @@ -0,0 +1,280 @@ +--- +############################# Static ############################ +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: ru +product: "Viewer" +product_tag: "viewer" +platform: "Python via .NET" +platform_tag: "python-net" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + + +############################# Head ############################ +head_title: "Python API для просмотра документов (PDF, Word, Excel, HTML, Изображения и электронная почта)" +head_description: "Python API для просмотра и рендеринга файловых документов. Добавьте средства просмотра PDF, Word, Excel, Изображений, HTML и электронной почты(Email) в Python приложения." + +############################# Header ############################ +title: "Мощный Python API для оптимизированного рендеринга документов" +description: "{index-content-python.header_description}" +words: + for: "for" + +actions: + main: "Бесплатная загрузка с PyPI" + main_link: "https://pypi.org/project/groupdocs-viewer/" + alt: "Лицензирование" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/python-net" + title: "Готовы начать?" + description: "Попробуйте функции GroupDocs.Viewer бесплатно или запросите лицензию." + +release: + title: "Версия {0} выпущена" + notes: "Что нового" + downloads: "Загрузки" + link: "https://releases.groupdocs.com/viewer/python-net/release-notes/latest/" + +code: + title: "Рендеринг PDF-файла на Python" + more: "Больше примеров" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Python-via-.NET" + install: "pip install GroupDocs.Viewer" + content: | + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + hvo = gvo.HtmlViewOptions + + // Назначьте параметры вывода HTML-файла (one file per page) + with gv.Viewer("resume.docx") as viewer: + // Создайте экземпляр Viewer + opts = hvo.for_embedded_resources("page_{0}.html") + + // Рендеринг PDF в HTML с параметрами (embedded resources) + viewer.view(opts) + ``` +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer вкратце" + description: "API для рендеринга, просмотра и преобразования документов, слайдов, диаграмм и многих других типов документов в Python приложениях" + features: + # feature loop + - title: "Эффективное и надежное отображение документов" + content: "С помощью API GroupDocs.Viewer вы можете эффективно выполнять рендеринг любых поддерживаемых форматов в HTML, JPEG, PNG и PDF с гибкими и мощными параметрами, сохраняя целостность содержимого и структуры документа. GroupDocs.Viewer для Python работает на платформах Windows и Linux." + + # feature loop + - title: "Поддерживаются самые популярные форматы файлов и документов" + content: "Мы поддерживаем рендеринг более 180 самых популярных форматов файлов и документов, включая Word, Excel, PDF, PowerPoint, семейство форматов OpenDocument, Архивы, Растровые и Векторные Изображения, Электронные Книги, Языки Программирования и Разметки, а также многие другие типы файлов, включая зашифрованные файлы с защитой паролем." + + # feature loop + - title: "Настраиваемый вывод" + content: "GroupDocs.Viewer позволяет не только выполнять рендеринг документа, но и точно контролировать, какие части документа должны быть отрисованы, а какие нет, как они должны быть отрисованы, и применять различные преобразования к отрисованному выводу." + +############################# Platforms ############################ +platforms: + enable: true + title: "Независимость от платформы" + description: "GroupDocs.Viewer для Python поддерживает следующие операционные системы, фреймворки и менеджеры пакетов" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "Eclipse" + image: "eclipse" + # platform loop + - title: "IntelliJ" + image: "intellij" + # platform loop + - title: "Windows" + image: "windows" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "PyPI" + image: "pypi" + +############################# File formats ############################ +formats: + enable: true + title: "Поддерживаемые форматы файлов" + description: | + GroupDocs.Viewer для Python (через .NET) поддерживает операции с следующими форматами файлов: [поддерживаемые форматы файлов](https://docs.groupdocs.com/viewer/python-net/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument и текстовые форматы + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### Изображения, графика и диаграммы + * **Растровые изображения:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### Другой + * **Интернет:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **Архивы:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **Другой:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "Возможности GroupDocs.Viewer" + description: "Легко визуализируйте, отображайте и конвертируйте документы PDF и Office." + + items: + # feature loop + - icon: "viewhtml" + title: "Просмотр документов в формате HTML" + content: "Конвертируйте документ любого типа в документ HTML с помощью CSS и SVG, который можно отобразить в любом современном веб-браузере." + + # feature loop + - icon: "rasterize" + title: "Растеризация документов" + content: "Преобразуйте любой поддерживаемый формат документа в растровое изображение с настраиваемым форматом изображения и качеством сжатия." + + # feature loop + - icon: "sourcecode" + title: "Рендеринг и выделение программных кодов" + content: "Поддержка всех популярных языков программирования, сценариев и разметки с возможностью анализа и выделения их синтаксиса." + + # feature loop + - icon: "convertpdf" + title: "Конвертировать в PDF" + content: "Документ любого поддерживаемого формата можно легко преобразовать и сохранить в PDF с настраиваемыми параметрами." + + # feature loop + - icon: "transform" + title: "Применить преобразования" + content: "Выходной документ можно трансформировать во время рендеринга — страницы можно поворачивать и/или переставлять, а поверх них можно размещать текстовый водяной знак." + + # feature loop + - icon: "adjustment" + title: "Настройка вывода HTML" + content: "Выходные HTML-документы, генерируемые GroupDocs.Viewer, можно очень тонко настроить: разрешено сохранение в поток или файл, с внешними или встроенными ресурсами, обратными вызовами и так далее." + + # feature loop + - icon: "complex" + title: "Поддержка сложных структур документов" + content: "GroupDocs.Viewer поддерживает не только отдельные документы, но и файлы, которые внутри содержат список или иерархическую структуру документов, например, сообщения электронной почты с вложениями, ZIP-архивы с внутренними файлами в папках, многостраничные изображения TIFF и т. д." + + # feature loop + - icon: "optimization" + title: "Варианты оптимизации" + content: "GroupDocs.Viewer содержит настраиваемую подсистему кэширования, которая может сократить время загрузки за счет использования кэшированных версий документов. Также набор различных опций для разных форматов позволяет исключить из рендеринга некоторые ненужные части или аспекты документов (шрифты, скрытые листы, вложения электронной почты) для оптимизации общей производительности." + + # feature loop + - icon: "passwordprotected" + title: "Поддержка документов, защищенных паролем" + content: "GroupDocs.Viewer позволяет открывать зашифрованные документы разных типов: PDF, WordProcessing, Spreadsheet, Presentation и другие, указав пароль в параметрах загрузки." + +############################# Code samples ############################ +code_samples: + enable: true + title: "Примеры кода" + description: "Некоторые случаи использования типичных операций GroupDocs.Viewer для Python через .NET" + items: + # code sample loop + - title: "Преобразование DOCX в HTML" + content: | + Свойства класса `HtmlViewOptions` позволяют управлять процессом конвертации. Дополнительные сведения см. [здесь](https://docs.groupdocs.com/viewer/python-net/rendering-to-html/). Например, вы можете внедрить все внешние ресурсы во выходной HTML-файл, сжать выходной файл и оптимизировать его для печати. + {{< landing/code title="Python">}} + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + + // Создать экземпляр средства просмотра + with gv.Viewer("resume.docx") as viewer: + // Установить параметры выходного HTML (один файл на страницу) + viewOptions = gvo.HtmlViewOptions.for_embedded_resources("page_{0}.html") + // Рендеринг PDF в HTML со встроенными ресурсами + viewer.view(viewOptions) + ``` + {{< /landing/code >}} + # code sample loop + - title: "Экспорт PPTX в PDF" + content: | + Создайте экземпляр класса `PdfViewOptions` и передайте его методу `Viewer.view` для преобразования файла PowerPoint PPTX в PDF. Свойства класса `PdfViewOptions` позволяют управлять процессом конвертации. Например, вы можете защитить выходной PDF-файл, изменить порядок его страниц и указать качество изображений документа. Дополнительные сведения см. в [следующем разделе документации](https://docs.groupdocs.com/viewer/python-net/rendering-to-pdf/). + {{< landing/code title="Python">}} + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + + // Создать экземпляр средства просмотра + with gv.Viewer("presentation.pptx") as viewer: + // Установить параметры выходного PDF (Set output PDF options) + viewOptions = gvo.PdfViewOptions("presentation.pdf") + // Экспортировать PPTX в PDF (Export PPTX to PDF) + viewer.view(viewOptions) + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "Обзоры продуктов GroupDocs" +# description: "Не верьте нам на слово. Посмотрите, что другие разработчики говорят о наших API" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Отличный сервис и отличная продукция. Они были чрезвычайно полезны и отзывчивы в процессе внедрения GroupDocs.Viewer для .NET, поэтому не могу не рекомендовать их достаточно высоко." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "После реализации и использования GroupDocs.Viewer для .NET в проекте он работает очень хорошо. Я проверил множество документов и пока все хорошо. Все, что я в него добавил, прекрасно визуализируется и выглядит так же хорошо, как в программе просмотра PDF или MS Word." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- diff --git a/content/viewer/python-net/_index.th.md b/content/viewer/python-net/_index.th.md new file mode 100644 index 00000000..908ee647 --- /dev/null +++ b/content/viewer/python-net/_index.th.md @@ -0,0 +1,280 @@ +--- +############################# Static ############################ +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: th +product: "Viewer" +product_tag: "viewer" +platform: "Python via .NET" +platform_tag: "python-net" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + + +############################# Head ############################ +head_title: "Python API สำหรับการดูเอกสาร (PDF, Word, Excel, HTML, รูปภาพ และอีเมล)" +head_description: "Python API สำหรับการเรนเดอร์ไฟล์และการดูเอกสาร เพิ่มโปรแกรมดู PDF, โปรแกรมดู Word, โปรแกรมดู Excel, โปรแกรมดูรูปภาพ, โปรแกรมดู HTML และโปรแกรมดูอีเมล ลงในแอปพลิเคชัน Python" + +############################# Header ############################ +title: "Python API ที่ทรงพลังสำหรับการเรนเดอร์เอกสารที่ปรับให้เหมาะสม" +description: "เรนเดอร์และแสดงผลเอกสารมากกว่า 180 รูปแบบ (PDF, HTML, รูปภาพ) ด้วย API ที่ทรงพลังและตัวเลือกการกำหนดค่าที่หลากหลายสำหรับการพัฒนาแอปพลิเคชัน Python" +words: + for: "for" + +actions: + main: "ดาวน์โหลดฟรีจาก PyPI" + main_link: "https://pypi.org/project/groupdocs-viewer/" + alt: "การออกใบอนุญาต" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/python-net" + title: "พร้อมที่จะเริ่มต้นหรือยัง?" + description: "ลองใช้คุณสมบัติ GroupDocs.Viewer ฟรีหรือขอใบอนุญาต" + +release: + title: "เวอร์ชัน {0} เปิดตัวแล้ว" + notes: "ดูว่ามีอะไรใหม่" + downloads: "ดาวน์โหลด" + link: "https://releases.groupdocs.com/viewer/python-net/release-notes/latest/" + +code: + title: "การเรนเดอร์ไฟล์ PDF ใน Python" + more: "ตัวอย่างเพิ่มเติม" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Python-via-.NET" + install: "pip install GroupDocs.Viewer" + content: | + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + hvo = gvo.HtmlViewOptions + + // ตั้งค่าตัวเลือกเอาต์พุต HTML (หนึ่งไฟล์ต่อหน้า) + with gv.Viewer("resume.docx") as viewer: + // สร้างอินสแตนซ์ของโปรแกรมดู + opts = hvo.for_embedded_resources("page_{0}.html") + + // การเรนเดอร์ PDF เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ + viewer.view(opts) + ``` +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer ภาพรวม" + description: "API สำหรับการเรนเดอร์, การแสดงผล และการแปลงเอกสาร, สไลด์, ไดอะแกรม และเอกสารประเภทอื่นๆ อีกมากมายในแอปพลิเคชัน Python" + features: + # feature loop + - title: "ดูเอกสารอย่างมีประสิทธิภาพและเชื่อถือได้" + content: "ด้วย GroupDocs.Viewer API คุณสามารถเรนเดอร์เอกสารทุกรูปแบบที่รองรับเป็น HTML, JPEG, PNG และ PDF ได้อย่างมีประสิทธิภาพด้วยตัวเลือกที่ยืดหยุ่นและทรงพลัง ช่วยรักษาความสมบูรณ์ของเนื้อหาและโครงสร้างของเอกสาร GroupDocs.Viewer สำหรับ Python ทำงานบนแพลตฟอร์ม Windows และ Linux" + + # feature loop + - title: "รองรับรูปแบบไฟล์และเอกสารส่วนใหญ่ที่นิยมใช้" + content: "รองรับการเรนเดอร์รูปแบบไฟล์และเอกสารมากกว่า 180 รูปแบบที่นิยมใช้มากที่สุด รวมถึง Word, Excel, PDF, PowerPoint, กลุ่มรูปแบบ OpenDocument, ไฟล์เก็บถาวร, รูปภาพแบบแรสเตอร์และเวกเตอร์, อีบุ๊ก, ภาษาโปรแกรมและมาร์กอัป และไฟล์ประเภทอื่นๆ อีกมากมาย รวมถึงไฟล์ที่เข้ารหัสด้วยการป้องกันด้วยรหัสผ่าน" + + # feature loop + - title: "เอาต์พุตที่กำหนดเองได้" + content: "GroupDocs.Viewer ไม่เพียงแต่ช่วยให้คุณเรนเดอร์เอกสารเท่านั้น แต่ยังควบคุมส่วนต่างๆ ของเอกสารที่ต้องการเรนเดอร์หรือไม่ ควบคุมวิธีการเรนเดอร์ และนำการแปลงต่างๆ ไปใช้กับเอาต์พุตที่เรนเดอร์ได้อย่างแม่นยำ" + +############################# Platforms ############################ +platforms: + enable: true + title: "ไม่ขึ้นกับแพลตฟอร์ม" + description: "GroupDocs.Viewer สำหรับ Python รองรับระบบปฏิบัติการ, กรอบงาน และตัวจัดการแพ็กเกจต่อไปนี้" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "Eclipse" + image: "eclipse" + # platform loop + - title: "IntelliJ" + image: "intellij" + # platform loop + - title: "Windows" + image: "windows" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "PyPI" + image: "pypi" + +############################# File formats ############################ +formats: + enable: true + title: "รูปแบบไฟล์ที่รองรับ" + description: | + GroupDocs.Viewer for Python (via .NET) รองรับการดำเนินการกับรูปแบบไฟล์ต่อไปนี้: [รูปแบบไฟล์ที่รองรับ](https://docs.groupdocs.com/viewer/python-net/supported-document-formats/) + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument และรูปแบบข้อความ + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### รูปภาพ กราฟิก และไดอะแกรม + * **ภาพแรสเตอร์:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### อื่น + * **เว็บ:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **หอจดหมายเหตุ:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **อื่น:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "คุณสมบัติ GroupDocs.Viewer" + description: "เรนเดอร์ แสดง และแปลงเอกสาร PDF และ Office ได้อย่างราบรื่น" + + items: + # feature loop + - icon: "viewhtml" + title: "ดูเอกสารในรูปแบบ HTML" + content: "แปลงเอกสารทุกประเภทให้เป็นเอกสาร HTML ด้วย CSS และ SVG ซึ่งสามารถแสดงในเว็บเบราว์เซอร์สมัยใหม่" + + # feature loop + - icon: "rasterize" + title: "แปลงเอกสารเป็นแรสเตอร์" + content: "แรสเตอร์รูปแบบเอกสารที่รองรับให้เป็นภาพแรสเตอร์ พร้อมรูปแบบภาพที่ปรับได้และคุณภาพการบีบอัด" + + # feature loop + - icon: "sourcecode" + title: "เรนเดอร์และไฮไลต์โค้ดโปรแกรม" + content: "รองรับการเขียนโปรแกรม สคริปต์ และภาษามาร์กอัปยอดนิยมทั้งหมด พร้อมความสามารถในการแยกวิเคราะห์และเน้นไวยากรณ์ของภาษาเหล่านั้น" + + # feature loop + - icon: "convertpdf" + title: "แปลงเป็น PDF" + content: "เอกสารในรูปแบบที่รองรับสามารถแปลงและบันทึกเป็น PDF ได้อย่างง่ายดายพร้อมตัวเลือกที่ปรับได้" + + # feature loop + - icon: "transform" + title: "ใช้การแปลง" + content: "เอกสารเอาต์พุตสามารถแปลงได้ในระหว่างการเรนเดอร์ - สามารถหมุนหน้าและ/หรือจัดเรียงหน้าใหม่ได้ และอาจวางลายน้ำข้อความไว้บนหน้าเหล่านั้นได้" + + # feature loop + - icon: "adjustment" + title: "การปรับเอาต์พุต HTML" + content: "เอกสาร HTML เอาท์พุตที่สร้างโดย GroupDocs.Viewer สามารถปรับแต่งได้อย่างละเอียด: อนุญาตให้บันทึกลงในสตรีมหรือไฟล์ด้วยทรัพยากรภายนอกหรือแบบฝัง การเรียกกลับ และอื่นๆ" + + # feature loop + - icon: "complex" + title: "รองรับโครงสร้างเอกสารที่ซับซ้อน" + content: "GroupDocs.Viewer รองรับไม่เพียงแต่เอกสารเดียวเท่านั้น แต่ยังรวมถึงไฟล์ต่างๆ ที่ภายในประกอบด้วยรายการหรือโครงสร้างลำดับชั้นของเอกสาร เช่น ข้อความอีเมลพร้อมไฟล์แนบ ไฟล์ ZIP ที่มีไฟล์ภายในภายในโฟลเดอร์ รูปภาพ TIFF แบบหลายหน้า และอื่นๆ" + + # feature loop + - icon: "optimization" + title: "ตัวเลือกการเพิ่มประสิทธิภาพ" + content: "GroupDocs.Viewer มีระบบย่อยแคชที่ปรับได้ ซึ่งสามารถเร่งเวลาการโหลดให้เร็วขึ้นได้โดยใช้เอกสารเวอร์ชันแคช นอกจากนี้ ชุดของตัวเลือกที่แตกต่างกันสำหรับรูปแบบที่แตกต่างกันยังช่วยแยกส่วนหรือลักษณะที่ไม่จำเป็นของเอกสารออกจากการเรนเดอร์ (แบบอักษร แผ่นงานที่ซ่อน ไฟล์แนบในอีเมล) เพื่อเพิ่มประสิทธิภาพโดยรวม" + + # feature loop + - icon: "passwordprotected" + title: "รองรับเอกสารที่มีการป้องกันด้วยรหัสผ่าน" + content: "GroupDocs.Viewer อนุญาตให้เปิดเอกสารที่เข้ารหัสประเภทต่างๆ: PDF, WordProcessing, Spreadsheet, Presentation และอื่นๆ โดยระบุรหัสผ่านในตัวเลือกการโหลด" + +############################# Code samples ############################ +code_samples: + enable: true + title: "ตัวอย่างโค้ด" + description: "บางกรณีการใช้งานทั่วไปของการดำเนินการ GroupDocs.Viewer สำหรับ Python ผ่าน .NET" + items: + # code sample loop + - title: "แปลง DOCX เป็น HTML" + content: | + คุณสมบัติของคลาส [HtmlViewOptions](placeholder) ช่วยให้คุณควบคุมกระบวนการแปลง สำหรับข้อมูลเพิ่มเติม โปรดดู [ที่นี่](https://docs.groupdocs.com/viewer/python-net/rendering-to-html/) ตัวอย่างเช่น คุณสามารถฝังทรัพยากรภายนอกทั้งหมดลงในไฟล์ HTML เอาต์พุต, ย่อขนาดไฟล์เอาต์พุต และปรับให้เหมาะสำหรับการพิมพ์ + {{< landing/code title="Python">}} + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + + // สร้างอินสแตนซ์ของโปรแกรมดู (already translated) + with gv.Viewer("resume.docx") as viewer: + // ตั้งค่าตัวเลือกเอาต์พุต HTML (หนึ่งไฟล์ต่อหน้า) (already translated) + viewOptions = gvo.HtmlViewOptions.for_embedded_resources("page_{0}.html") + // การเรนเดอร์ PDF เป็น HTML ด้วยทรัพยากรที่ฝังอยู่ (already translated) + viewer.view(viewOptions) + ``` + {{< /landing/code >}} + # code sample loop + - title: "ส่งออก PPTX เป็น PDF" + content: | + สร้างอินสแตนซ์ของคลาส [PdfViewOptions](placeholder) และส่งผ่านไปยังเมธอด `Viewer.view` เพื่อแปลงไฟล์ PowerPoint PPTX เป็น PDF คุณสมบัติของคลาส [PdfViewOptions](placeholder) ช่วยให้คุณควบคุมกระบวนการแปลง ตัวอย่างเช่น คุณสามารถป้องกันไฟล์ PDF เอาต์พุต, เปลี่ยนลำดับหน้าของไฟล์ หรือระบุคุณภาพของรูปภาพในเอกสาร สำหรับข้อมูลเพิ่มเติม โปรดดู [ส่วนต่อไปนี้ของเอกสาร](https://docs.groupdocs.com/viewer/python-net/rendering-to-pdf/) + {{< landing/code title="Python">}} + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + + // สร้างอินสแตนซ์ของโปรแกรมดู (already translated) + with gv.Viewer("presentation.pptx") as viewer: + // ตั้งค่าตัวเลือกเอาต์พุต PDF (Set output PDF options) + viewOptions = gvo.PdfViewOptions("presentation.pdf") + // ส่งออก PPTX เป็น PDF (Export PPTX to PDF) (already translated) + viewer.view(viewOptions) + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "บทวิจารณ์ผลิตภัณฑ์ GroupDocs" +# description: "อย่าเพิ่งเชื่อคำพูดของเรา ดูว่านักพัฒนารายอื่นพูดถึง API ของเราอย่างไร" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "บริการที่เป็นเลิศและผลิตภัณฑ์ที่เป็นเลิศ พวกเขามีประโยชน์และตอบสนองอย่างมากในระหว่างกระบวนการใช้งาน GroupDocs.Viewer สำหรับ .NET ไม่สามารถแนะนำได้มากพอ" +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "หลังจากใช้งานและใช้งาน GroupDocs.Viewer สำหรับ .NET ในโครงการแล้ว ดูเหมือนว่าจะทำงานได้ดีมาก ฉันได้ทดสอบกับเอกสารจำนวนมากและจนถึงตอนนี้ก็ดีมาก ทุกสิ่งที่ฉันใส่ลงไปนั้นเรนเดอร์ได้อย่างสวยงามและดูดีไม่แพ้กันในโปรแกรมดู PDF หรือ MS Word" +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- diff --git a/content/viewer/python-net/_index.uk.md b/content/viewer/python-net/_index.uk.md new file mode 100644 index 00000000..725b2c7b --- /dev/null +++ b/content/viewer/python-net/_index.uk.md @@ -0,0 +1,280 @@ +--- +############################# Static ############################ +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: uk +product: "Viewer" +product_tag: "viewer" +platform: "Python via .NET" +platform_tag: "python-net" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + + +############################# Head ############################ +head_title: "Python API для перегляду документів (PDF, Word, Excel, HTML, зображення та електронна пошта)" +head_description: "API для візуалізації файлів і перегляду документів Python. Додайте переглядач PDF, переглядач Word, переглядач Excel, переглядач зображень, переглядач HTML і переглядач електронної пошти до своїх Python-додатків." + +############################# Header ############################ +title: "Потужний Python API для оптимізованого візуалізації документів" +description: "Візуалізуйте та відображайте понад 180 форматів документів (PDF, HTML, зображення) за допомогою надійних API та гнучких параметрів конфігурації для розробки додатків Python." +words: + for: "for" + +actions: + main: "Безкоштовне завантаження з PyPI" + main_link: "https://pypi.org/project/groupdocs-viewer/" + alt: "Ліцензування" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/python-net" + title: "Готові почати?" + description: "Спробуйте функції GroupDocs.Viewer безкоштовно або подайте запит на ліцензію" + +release: + title: "Випущено версію {0}" + notes: "Подивіться, що нового" + downloads: "Завантаження" + link: "https://releases.groupdocs.com/viewer/python-net/release-notes/latest/" + +code: + title: "Візуалізація PDF-файлу в Python" + more: "Більше прикладів" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Python-via-.NET" + install: "pip install GroupDocs.Viewer" + content: | + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + hvo = gvo.HtmlViewOptions + + // Встановіть параметри вихідного HTML (один файл на сторінку) + with gv.Viewer("resume.docx") as viewer: + // Створіть екземпляр засобу перегляду + opts = hvo.for_embedded_resources("page_{0}.html") + + // Візуалізація PDF в HTML із вбудованими ресурсами + viewer.view(opts) + ``` +############################# Overview ############################ +overview: + enable: true + title: "Огляд GroupDocs.Viewer" + description: "API для візуалізації, перегляду та перетворення документів, слайдів, діаграм і багатьох інших типів документів у програмах Python" + features: + # feature loop + - title: "Ефективне та надійне відображення документів" + content: "За допомогою API GroupDocs.Viewer ви можете ефективно візуалізувати документи будь-якого підтримуваного формату в HTML, JPEG, PNG і PDF за допомогою гнучких і потужних параметрів, зберігаючи цілісність вмісту та структури документа. GroupDocs.Viewer для Python працює на платформах Windows і Linux." + + # feature loop + - title: "Підтримка більшості поширених форматів файлів і документів" + content: "Ми підтримуємо візуалізацію понад 180 найпопулярніших форматів файлів і документів, включаючи Word, Excel, PDF, PowerPoint, сімейство форматів OpenDocument, архіви, растрові та векторні зображення, електронні книги, мови програмування та розмітки, а також багато інших типів файлів, включаючи зашифровані файли із захистом паролем." + + # feature loop + - title: "Настроюваний вихід" + content: "GroupDocs.Viewer дозволяє не тільки візуалізувати документ, але й точно контролювати, які частини документа потрібно візуалізувати, а які ні, як їх потрібно візуалізувати, і застосовувати різні перетворення до візуалізованого виводу." + +############################# Platforms ############################ +platforms: + enable: true + title: "Незалежність від платформи" + description: "GroupDocs.Viewer для Python підтримує такі операційні системи, фреймворки та менеджери пакетів" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "Eclipse" + image: "eclipse" + # platform loop + - title: "IntelliJ" + image: "intellij" + # platform loop + - title: "Windows" + image: "windows" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "PyPI" + image: "pypi" + +############################# File formats ############################ +formats: + enable: true + title: "Підтримувані формати файлів" + description: | + GroupDocs.Viewer для Python (через .NET) підтримує операції з такими форматами файлів: [підтримувані формати файлів](https://docs.groupdocs.com/viewer/python-net/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument і текстові формати + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### Зображення, графіки та діаграми + * **Растрові зображення:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### Інший + * **Інтернет:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **Архіви:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **Інший:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "Функції GroupDocs.Viewer" + description: "Легко візуалізуйте, відображайте та конвертуйте документи PDF і Office" + + items: + # feature loop + - icon: "viewhtml" + title: "Перегляд документів у HTML" + content: "Перетворіть документ будь-якого типу в документ HTML за допомогою CSS і SVG, який можна відобразити в будь-якому сучасному веб-браузері." + + # feature loop + - icon: "rasterize" + title: "Растеризуйте документи" + content: "Растеризуйте будь-який підтримуваний формат документа до растрового зображення з регульованим форматом зображення та якістю стиснення." + + # feature loop + - icon: "sourcecode" + title: "Відтворення та виділення програмних кодів" + content: "Підтримка всіх популярних мов програмування, сценаріїв і розмітки з можливістю аналізу та виділення їх синтаксису." + + # feature loop + - icon: "convertpdf" + title: "Перетворити в PDF" + content: "Документ будь-якого підтримуваного формату можна легко конвертувати та зберегти у PDF із настроюваними параметрами." + + # feature loop + - icon: "transform" + title: "Застосувати перетворення" + content: "Вихідний документ можна трансформувати під час візуалізації - сторінки можна обертати та/або змінювати порядок, а текстовий водяний знак можна розміщувати поверх них." + + # feature loop + - icon: "adjustment" + title: "Налаштування виведення HTML" + content: "Вихідні HTML-документи, згенеровані GroupDocs.Viewer, можна дуже точно налаштувати: дозволено зберігати в потік або файл із зовнішніми або вбудованими ресурсами, зворотними викликами тощо." + + # feature loop + - icon: "complex" + title: "Підтримка складних структур документів" + content: "GroupDocs.Viewer підтримує не лише окремі документи, а й файли, які містять список або ієрархічну структуру документів, як-от повідомлення електронної пошти з вкладеннями, ZIP-архіви з внутрішніми файлами в папках, багатосторінкові зображення TIFF тощо." + + # feature loop + - icon: "optimization" + title: "Варіанти оптимізації" + content: "GroupDocs.Viewer містить регульовану підсистему кешу, яка може пришвидшити час завантаження за допомогою кешованих версій документів. Крім того, набір різних параметрів для різних форматів дозволяє виключити деякі непотрібні частини або аспекти документів із візуалізації (шрифти, приховані аркуші, вкладення електронної пошти), щоб оптимізувати загальну продуктивність" + + # feature loop + - icon: "passwordprotected" + title: "Підтримка документів, захищених паролем" + content: "GroupDocs.Viewer дозволяє відкривати зашифровані документи різних типів: PDF, WordProcessing, Spreadsheet, Presentation та інші, вказавши пароль у параметрах завантаження." + +############################# Code samples ############################ +code_samples: + enable: true + title: "Коди-зразки" + description: "Деякі типові варіанти використання операцій GroupDocs.Viewer для Python через .NET" + items: + # code sample loop + - title: "Перетворення DOCX в HTML" + content: | + Властивості класу `HtmlViewOptions` дозволяють керувати процесом перетворення. Докладніше дивіться [тут](https://docs.groupdocs.com/viewer/python-net/rendering-to-html/) Наприклад, ви можете інтегрувати всі зовнішні ресурси у вихідний HTML-файл, стиснути вихідний файл і оптимізувати його для друку. + {{< landing/code title="Python">}} + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + + // Створіть екземпляр засобу перегляду (already translated) + with gv.Viewer("resume.docx") as viewer: + // Встановіть параметри вихідного HTML (один файл на сторінку) (already translated) + viewOptions = gvo.HtmlViewOptions.for_embedded_resources("page_{0}.html") + // Візуалізація PDF в HTML із вбудованими ресурсами (already translated) + viewer.view(viewOptions) + ``` + {{< /landing/code >}} + # code sample loop + - title: "Експорт PPTX в PDF" + content: | + Створіть екземпляр класу `PdfViewOptions` і передайте його методу `Viewer.view` для перетворення файлу PowerPoint PPTX у PDF. Властивості класу `PdfViewOptions` дозволяють керувати процесом перетворення. Наприклад, ви можете захистити вихідний PDF-файл, змінити порядок його сторінок і указати якість зображень документа. Докладніше дивіться в [наступному розділі документації](https://docs.groupdocs.com/viewer/python-net/rendering-to-pdf/) + {{< landing/code title="Python">}} + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + + // Створіть екземпляр засобу перегляду (already translated) + with gv.Viewer("presentation.pptx") as viewer: + // Встановіть параметри вихідного PDF (Set output PDF options) + viewOptions = gvo.PdfViewOptions("presentation.pdf") + // Експорт PPTX в PDF (Export PPTX to PDF) (already translated) + viewer.view(viewOptions) + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "Огляди продукції GroupDocs" +# description: "Не вірте нам на слово. Подивіться, що інші розробники кажуть про наші API" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Відмінний сервіс і відмінні продукти. Вони були надзвичайно корисними та чуйними під час впровадження GroupDocs.Viewer для .NET, тому не можу рекомендувати їх досить високо." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Після впровадження та використання GroupDocs.Viewer для .NET у проекті виглядає, що він працює дуже добре. Я перевірив багато документів, і поки що все добре. Усе, що я кинув до нього, чудово відображається та виглядає так само добре, як у засобі перегляду PDF чи MS Word." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- diff --git a/content/viewer/python-net/_index.vi.md b/content/viewer/python-net/_index.vi.md new file mode 100644 index 00000000..70d140a4 --- /dev/null +++ b/content/viewer/python-net/_index.vi.md @@ -0,0 +1,280 @@ +--- +############################# Static ############################ +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: vi +product: "Viewer" +product_tag: "viewer" +platform: "Python via .NET" +platform_tag: "python-net" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + + +############################# Head ############################ +head_title: "Python API để xem tài liệu (PDF, Word, Excel, HTML, hình ảnh và email)" +head_description: "Python API để hiển thị và xem tài liệu. Thêm trình xem PDF, trình xem Word, trình xem Excel, trình xem hình ảnh, trình xem HTML và trình xem email vào các ứng dụng Python của bạn." + +############################# Header ############################ +title: "Python API mạnh mẽ để hiển thị tài liệu được tối ưu hóa" +description: "Hiển thị và xem hơn 180 định dạng tài liệu (PDF, HTML, hình ảnh) với các API mạnh mẽ và tùy chọn cấu hình linh hoạt để phát triển ứng dụng Python." +words: + for: "for" + +actions: + main: "Tải xuống miễn phí từ PyPI" + main_link: "https://pypi.org/project/groupdocs-viewer/" + alt: "Cấp phép" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/python-net" + title: "Sẵn sàng để bắt đầu?" + description: "Dùng thử miễn phí các tính năng của GroupDocs.Viewer hoặc yêu cầu giấy phép" + +release: + title: "Đã phát hành phiên bản {0}" + notes: "Xem có gì mới" + downloads: "Tải xuống" + link: "https://releases.groupdocs.com/viewer/python-net/release-notes/latest/" + +code: + title: "Hiển thị tệp PDF trong Python" + more: "Thêm ví dụ" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Python-via-.NET" + install: "pip install GroupDocs.Viewer" + content: | + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + hvo = gvo.HtmlViewOptions + + // Cài đặt các tùy chọn đầu ra HTML (một tệp cho mỗi trang) + with gv.Viewer("resume.docx") as viewer: + // Tạo một phiên bản của trình xem + opts = hvo.for_embedded_resources("page_{0}.html") + + // Hiển thị PDF sang HTML với các tài nguyên được nhúng + viewer.view(opts) + ``` +############################# Overview ############################ +overview: + enable: true + title: "Tổng quan về GroupDocs.Viewer" + description: "API để hiển thị, xem và chuyển đổi tài liệu, slide, biểu đồ và nhiều loại tài liệu khác trong các ứng dụng Python" + features: + # feature loop + - title: "Hiển thị tài liệu hiệu quả và đáng tin cậy" + content: "Với GroupDocs.Viewer API, bạn có thể hiển thị hiệu quả các tài liệu của bất kỳ định dạng được hỗ trợ nào sang HTML, JPEG, PNG và PDF với các tùy chọn linh hoạt và mạnh mẽ, duy trì tính toàn vẹn của nội dung và cấu trúc tài liệu. GroupDocs.Viewer cho Python hoạt động trên các nền tảng Windows và Linux." + + # feature loop + - title: "Hỗ trợ hầu hết các định dạng tệp và tài liệu phổ biến" + content: "Chúng tôi hỗ trợ hiển thị hơn 180 định dạng tệp và tài liệu phổ biến nhất, bao gồm Word, Excel, PDF, PowerPoint, họ định dạng OpenDocument, αρχεία (archive), hình ảnh raster và vector, sách điện tử, ngôn ngữ lập trình và đánh dấu và nhiều loại tệp khác, bao gồm các tệp được mã hóa với bảo vệ bằng mật khẩu." + + # feature loop + - title: "Đầu ra có thể tùy chỉnh" + content: "GroupDocs.Viewer không chỉ cho phép bạn hiển thị tài liệu mà còn cho phép bạn kiểm soát chính xác những phần nào của tài liệu cần được hiển thị hoặc không, cách chúng cần được hiển thị và áp dụng các chuyển đổi khác nhau cho đầu ra được hiển thị." + +############################# Platforms ############################ +platforms: + enable: true + title: "Không phụ thuộc nền tảng" + description: "GroupDocs.Viewer cho Python hỗ trợ các hệ điều hành, framework và trình quản lý gói sau" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "Eclipse" + image: "eclipse" + # platform loop + - title: "IntelliJ" + image: "intellij" + # platform loop + - title: "Windows" + image: "windows" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "PyPI" + image: "pypi" + +############################# File formats ############################ +formats: + enable: true + title: "Các định dạng tập tin được hỗ trợ" + description: | + GroupDocs.Viewer cho Python (qua .NET) hỗ trợ các thao tác với các định dạng tệp sau: [định dạng tệp được hỗ trợ](https://docs.groupdocs.com/viewer/python-net/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office, OpenDocument và các định dạng văn bản + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### Hình ảnh, Đồ họa & Sơ đồ + * **Hình ảnh raster:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### Khác + * **Web:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **Lưu trữ:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **Khác:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "Tính năng của GroupDocs.Viewer" + description: "Hiển thị, hiển thị và chuyển đổi tài liệu PDF và Office một cách liền mạch" + + items: + # feature loop + - icon: "viewhtml" + title: "Xem tài liệu bằng HTML" + content: "Chuyển đổi bất kỳ loại tài liệu nào thành tài liệu HTML bằng CSS và SVG, có thể được hiển thị trong bất kỳ trình duyệt web hiện đại nào." + + # feature loop + - icon: "rasterize" + title: "Rasterize tài liệu" + content: "Rasterize bất kỳ định dạng tài liệu nào có thể hỗ trợ thành hình ảnh raster, với định dạng hình ảnh có thể điều chỉnh và chất lượng nén." + + # feature loop + - icon: "sourcecode" + title: "Hiển thị và đánh dấu mã lập trình" + content: "Hỗ trợ tất cả các ngôn ngữ lập trình, viết kịch bản và đánh dấu phổ biến, với khả năng phân tích cú pháp và làm nổi bật cú pháp của chúng." + + # feature loop + - icon: "convertpdf" + title: "Chuyển đổi sang PDF" + content: "Tài liệu ở bất kỳ định dạng hỗ trợ nào đều có thể dễ dàng chuyển đổi và lưu thành PDF với các tùy chọn có thể điều chỉnh." + + # feature loop + - icon: "transform" + title: "Áp dụng các phép biến đổi" + content: "Tài liệu đầu ra có thể được chuyển đổi trong quá trình hiển thị - các trang có thể được xoay và/hoặc sắp xếp lại và hình mờ văn bản có thể được đặt trên chúng." + + # feature loop + - icon: "adjustment" + title: "Điều chỉnh đầu ra HTML" + content: "Các tài liệu HTML đầu ra do GroupDocs.Viewer tạo ra có thể được điều chỉnh rất tinh vi: nó được phép lưu vào luồng hoặc tệp, với các tài nguyên bên ngoài hoặc được nhúng, lệnh gọi lại, v.v." + + # feature loop + - icon: "complex" + title: "Hỗ trợ cấu trúc tài liệu phức tạp" + content: "GroupDocs.Viewer không chỉ hỗ trợ các tài liệu đơn lẻ mà còn hỗ trợ các tệp chứa danh sách hoặc cấu trúc phân cấp của tài liệu, như email có tệp đính kèm, kho lưu trữ ZIP với các tệp nội bộ trong thư mục, hình ảnh TIFF nhiều trang, v.v." + + # feature loop + - icon: "optimization" + title: "Tùy chọn tối ưu hóa" + content: "GroupDocs.Viewer chứa một hệ thống con bộ nhớ đệm có thể điều chỉnh, hệ thống này có thể rút ngắn thời gian tải bằng cách sử dụng các phiên bản tài liệu được lưu trong bộ nhớ đệm. Ngoài ra, một tập hợp các tùy chọn khác nhau cho các định dạng khác nhau cho phép loại trừ một số phần hoặc khía cạnh không cần thiết của tài liệu khỏi quá trình hiển thị (phông chữ, bảng tính ẩn, tệp đính kèm email) để tối ưu hóa hiệu suất tổng thể" + + # feature loop + - icon: "passwordprotected" + title: "Hỗ trợ các tài liệu được bảo vệ bằng mật khẩu" + content: "GroupDocs.Viewer cho phép mở các tài liệu được mã hóa thuộc nhiều loại khác nhau: PDF, WordProcessing, Bảng tính, Bản trình bày và các loại khác bằng cách chỉ định mật khẩu trong các tùy chọn tải." + +############################# Code samples ############################ +code_samples: + enable: true + title: "Ví dụ mã" + description: "Một số trường hợp sử dụng典型 (đặc trưng - diction) của các hoạt động GroupDocs.Viewer cho Python thông qua .NET" + items: + # code sample loop + - title: "Chuyển đổi DOCX sang HTML" + content: | + Các thuộc tính của lớp `HtmlViewOptions` cho phép bạn kiểm soát quá trình chuyển đổi. Để biết thêm thông tin, vui lòng xem [ở đây](https://docs.groupdocs.com/viewer/python-net/rendering-to-html/). Ví dụ: bạn có thể nhúng tất cả các tài nguyên bên ngoài vào tệp HTML đầu ra, nén tệp đầu ra và tối ưu hóa nó để in. + {{< landing/code title="Python">}} + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + + // Tạo một phiên bản của trình xem (already translated) + with gv.Viewer("resume.docx") as viewer: + // Cài đặt các tùy chọn đầu ra HTML (một tệp cho mỗi trang) (already translated) + viewOptions = gvo.HtmlViewOptions.for_embedded_resources("page_{0}.html") + // Hiển thị PDF sang HTML với các tài nguyên được nhúng (already translated) + viewer.view(viewOptions) + ``` + {{< /landing/code >}} + # code sample loop + - title: "Xuất PPTX sang PDF" + content: | + Tạo một phiên bản của lớp `PdfViewOptions` và truyền nó cho phương thức `Viewer.view` để chuyển đổi tệp PowerPoint PPTX sang PDF. Các thuộc tính của lớp `PdfViewOptions` cho phép bạn kiểm soát quá trình chuyển đổi. Ví dụ: bạn có thể bảo vệ tệp PDF đầu ra, sắp xếp lại các trang của nó và chỉ định chất lượng hình ảnh của tài liệu. Để biết thêm thông tin, vui lòng xem [phần tiếp theo của tài liệu](https://docs.groupdocs.com/viewer/python-net/rendering-to-pdf/). + {{< landing/code title="Python">}} + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + + // Tạo một phiên bản của trình xem (already translated) + with gv.Viewer("presentation.pptx") as viewer: + // Cài đặt các tùy chọn đầu ra PDF (Set output PDF options) + viewOptions = gvo.PdfViewOptions("presentation.pdf") + // Xuất PPTX sang PDF (Export PPTX to PDF) (already translated) + viewer.view(viewOptions) + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "Đánh giá sản phẩm GroupDocs" +# description: "Đừng chỉ tin lời chúng tôi. Xem những nhà phát triển khác nói gì về API của chúng tôi" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Dịch vụ tuyệt vời và sản phẩm tuyệt vời. Chúng cực kỳ hữu ích và phản hồi nhanh trong quá trình triển khai GroupDocs.Viewer cho .NET, không thể giới thiệu chúng đủ cao." +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "Sau khi triển khai và sử dụng GroupDocs.Viewer cho .NET trong dự án, có vẻ như nó hoạt động rất tốt. Tôi đã thử nghiệm với rất nhiều tài liệu và cho đến nay vẫn tốt. Mọi thứ tôi đưa vào nó đều hiển thị độc đáo và trông đẹp như trong trình xem PDF hoặc MS Word." +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +--- diff --git a/content/viewer/python-net/_index.zh.md b/content/viewer/python-net/_index.zh.md new file mode 100644 index 00000000..b4c64ce5 --- /dev/null +++ b/content/viewer/python-net/_index.zh.md @@ -0,0 +1,280 @@ +--- +############################# Static ############################ +layout: "landing" +date: 2023-06-29T12:38:08 +draft: false + +lang: zh +product: "Viewer" +product_tag: "viewer" +platform: "Python via .NET" +platform_tag: "python-net" + +############################# Drop-down ############################ +supported_platforms: + items: + # supported_platforms loop + - title: ".NET" + tag: "net" + # supported_platforms loop + - title: "Java" + tag: "java" + # supported_platforms loop + - title: "Node.js" + tag: "nodejs-java" + # supported_platforms loop + - title: "Python" + tag: "python-net" + + +############################# Head ############################ +head_title: "Python API 用于查看文档(PDF、Word、Excel、HTML、图像和电子邮件)" +head_description: "Python API 用于文件可视化和文档查看。将 PDF 查看器、Word 查看器、Excel 查看器、图像查看器、HTML 查看器和电子邮件查看器添加到您的 Python 应用中。" + +############################# Header ############################ +title: "用于优化文档可视化的强大 Python API" +description: "使用功能强大的 API 和灵活的配置选项,可视化和呈现超过 180 种文档格式(PDF、HTML、图像),用于开发 Python 应用。" +words: + for: "for" + +actions: + main: "从 PyPI 免费下载" + main_link: "https://pypi.org/project/groupdocs-viewer/" + alt: "许可" + alt_link: "https://purchase.groupdocs.com/pricing/viewer/python-net" + title: "准备好开始了吗?" + description: "免费试用 GroupDocs.Viewer 功能或申请许可证" + +release: + title: "版本 {0} 已发布" + notes: "看看有什么新鲜事" + downloads: "下载" + link: "https://releases.groupdocs.com/viewer/python-net/release-notes/latest/" + +code: + title: "在 Python 中可视化 PDF 文件" + more: "更多示例" + more_link: "https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Python-via-.NET" + install: "pip install GroupDocs.Viewer" + content: | + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + hvo = gvo.HtmlViewOptions + + // 设置 HTML 输出选项(每页一个文件) + with gv.Viewer("resume.docx") as viewer: + // 创建查看器实例 + opts = hvo.for_embedded_resources("page_{0}.html") + + // 使用嵌入资源将 PDF 渲染为 HTML + viewer.view(opts) + ``` +############################# Overview ############################ +overview: + enable: true + title: "GroupDocs.Viewer 概述" + description: "用于在 Python 应用中可视化、查看和转换文档、幻灯片、图表和许多其他类型文档的 API" + features: + # feature loop + - title: "高效可靠地呈现文档" + content: "使用 GroupDocs.Viewer API,您可以使用灵活强大的选项,将任何受支持格式的文档高效可视化为 HTML、JPEG、PNG 和 PDF,同时保持文档内容和结构的完整性。GroupDocs.Viewer for Python 适用于 Windows 和 Linux 平台。" + + # feature loop + - title: "支持大多数常用文件和文档格式" + content: "我们支持可视化 180 多种最常用的文件和文档格式,包括 Word、Excel、PDF、PowerPoint、OpenDocument 格式系列、存档文件、光栅和矢量图像、电子书、编程语言和标记语言以及许多其他类型的文件,包括使用密码保护进行加密的文件。" + + # feature loop + - title: "可定制的输出" + content: "GroupDocs.Viewer 不仅可以让您可视化文档,还可以精确控制需要可视化或不需可视化的文档部分、可视化方式以及将各种转换应用于可视化输出。" + +############################# Platforms ############################ +platforms: + enable: true + title: "与平台无关" + description: "GroupDocs.Viewer for Python 支持以下操作系统、框架和包管理器" + items: + # platform loop + - title: "Amazon" + image: "amazon" + # platform loop + - title: "Docker" + image: "docker" + # platform loop + - title: "Azure" + image: "azure" + # platform loop + - title: "Eclipse" + image: "eclipse" + # platform loop + - title: "IntelliJ" + image: "intellij" + # platform loop + - title: "Windows" + image: "windows" + # platform loop + - title: "Linux" + image: "linux" + # platform loop + - title: "PyPI" + image: "pypi" + +############################# File formats ############################ +formats: + enable: true + title: "支持的文件格式" + description: | + GroupDocs.Viewer for Python (通过 .NET) 支持以下文件格式的操作: [受支持的文件格式](https://docs.groupdocs.com/viewer/python-net/supported-document-formats/). + groups: + # group loop + - color: "green" + content: | + ### Microsoft Office、OpenDocument 和文本格式 + * **Word:** DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT + * **Excel:** XLS, XLSX, XLSM, XLSB, XLTM, XLT, XLTM, XLTX + * **PowerPoint:** PPT, PPTX, PPS, PPSX, PPSM, POT, POTM, POTX, PPTM + * **Project:** MPP, MPT, MPX + * **Outlook:** MSG, EML, EMLX, PST, OST + * **OneNote:** ONE + * **OpenDocument:** ODT, OTT, ODS, ODP, OTP, OTS, ODG + * **Fixed Page Layout:** PDF, TEX, XPS, OXPS + * **e-Books:** EPUB, MOBI, DjVu + * **Delimiter-Separated Values:** CSV, TSV + # group loop + - color: "blue" + content: | + ### 图像、图形和图表 + * **光栅图像:** BMP, GIF, JPG, PNG, TIFF, WebP, DNG, DIB, Jpeg2000 family + * **Windows Icon:** ICO + * **Scalable Vector Graphics:** SVG, CDR, CMX, IGS, SVGZ + * **Adobe Photoshop:** PSD, PSB + * **Stereo Lithography (3D Printing):** STL + * **Medical Imaging:** DICOM + * **Plotter Documents:** PLT, HPG + * **Autodesk Design Web Formats:** DWF, DWG + * **AutoCAD Drawing:** DWT, IFC, STL, CF2 + # group loop + - color: "red" + content: | + ### 其他 + * **网络:** HTML, MHT, MHTML, XML + * **Metafile:** WMF, EMF, CGM, EMZ, WMZ + * **Visio:** VSD, VDX, VSS, VSSX, VSX, VST, VSTX, VTX, VSDX, VDW, VSTM, VSSM, VSDM + * **Project:** MPP, MPT, MPX + * **PostScript:** PS, EPS + * **档案:** ZIP, TAR, BZ2, GZ, RAR, RAR5 + * **其他:** VCF, VCARD, NUMBERS, NSF, OBJ + * **C/C++/C# Files:** C, CC, C# , CPP, CXX, CS, H, HH, M, MM + * **Java/JavaScript Files:** JAVA, JS, JSON, PROPERTIES + +############################# Features ############################ +features: + enable: true + title: "GroupDocs.Viewer 功能" + description: "无缝渲染、显示和转换 PDF 和 Office 文档" + + items: + # feature loop + - icon: "viewhtml" + title: "查看 HTML 格式的文档" + content: "使用 CSS 和 SVG 将任何类型的文档转换为 HTML 文档,可以在任何现代网络浏览器中显示。" + + # feature loop + - icon: "rasterize" + title: "光栅化文档" + content: "将任何支持的文档格式光栅化为光栅图像,并具有可调整的图像格式和压缩质量。" + + # feature loop + - icon: "sourcecode" + title: "渲染并突出显示编程代码" + content: "支持所有流行的编程、脚本和标记语言,能够解析和突出显示其语法。" + + # feature loop + - icon: "convertpdf" + title: "转换为 PDF" + content: "任何支持格式的文档都可以通过可调整的选项轻松转换并保存为 PDF。" + + # feature loop + - icon: "transform" + title: "应用转换" + content: "输出文档可以在渲染过程中进行转换 - 页面可以旋转和/或重新排列,并且文本水印可以放置在它们的顶部。" + + # feature loop + - icon: "adjustment" + title: "HTML 输出调整" + content: "由 GroupDocs.Viewer 生成的输出 HTML 文档可以进行非常精细的调整:允许使用外部或嵌入资源、回调等保存到流或文件。" + + # feature loop + - icon: "complex" + title: "支持复杂的文档结构" + content: "GroupDocs.Viewer 不仅支持单个文档,还支持内部包含文档列表或层次结构的文件,例如带有附件的电子邮件、文件夹内带有内部文件的 ZIP 存档、多页 TIFF 图像等。" + + # feature loop + - icon: "optimization" + title: "优化选项" + content: "GroupDocs.Viewer 包含一个可调整的缓存子系统,它可以通过使用文档的缓存版本来缩短加载时间。此外,针对不同格式的一组不同选项允许从渲染中排除文档的一些不必要的部分或方面(字体、隐藏的工作表、电子邮件附件),以优化整体性能" + + # feature loop + - icon: "passwordprotected" + title: "支持受密码保护的文档" + content: "GroupDocs.Viewer 允许通过在加载选项中指定密码来打开不同类型的加密文档:PDF、WordProcessing、电子表格、演示文稿等。" + +############################# Code samples ############################ +code_samples: + enable: true + title: "代码示例" + description: "通过 .NET 使用 Python 的 GroupDocs.Viewer 操作的一些典型用例" + items: + # code sample loop + - title: "将 DOCX 转换为 HTML" + content: | + `HtmlViewOptions` 类属性可以让您控制转换过程。有关详细信息,请参阅 [此处](https://docs.groupdocs.com/viewer/python-net/rendering-to-html/). 例如,您可以将所有外部资源嵌入输出 HTML 文件,压缩输出文件并将其优化为打印。 + {{< landing/code title="Python">}} + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + + // 创建查看器实例 (already translated) + with gv.Viewer("resume.docx") as viewer: + // 设置 HTML 输出选项(每页一个文件) (already translated) + viewOptions = gvo.HtmlViewOptions.for_embedded_resources("page_{0}.html") + // 使用嵌入资源将 PDF 渲染为 HTML (already translated) + viewer.view(viewOptions) + ``` + {{< /landing/code >}} + # code sample loop + - title: "将 PPTX 导出为 PDF" + content: | + 创建一个 `PdfViewOptions` 类实例并将其传递给 `Viewer.view` 方法,以将 PowerPoint PPTX 文件转换为 PDF。 `PdfViewOptions` 类属性可以让您控制转换过程。例如,您可以保护输出 PDF 文件,更改其页面顺序并指定文档图像质量。有关详细信息,请参阅 [文档的下一部分](https://docs.groupdocs.com/viewer/python-net/rendering-to-pdf/). + {{< landing/code title="Python">}} + ```python {style=abap} + import groupdocs.viewer as gv + import groupdocs.viewer.options as gvo + + // 创建查看器实例 (already translated) + with gv.Viewer("presentation.pptx") as viewer: + // 设置输出 PDF 选项 (Set output PDF options) + viewOptions = gvo.PdfViewOptions("presentation.pdf") + // 将 PPTX 导出为 PDF (Export PPTX to PDF) (already translated) + viewer.view(viewOptions) + ``` + {{< /landing/code >}} +############################# Reviews ############################ +# reviews: +# enable: true +# title: "GroupDocs 产品评论" +# description: "不要只相信我们的话。看看其他开发人员如何评价我们的 API" + +# items: +# # review loop +# - title: "GroupDocs.Viewer" +# content: "优质的服务和优质的产品。他们在 GroupDocs.Viewer for .NET 实施过程中提供了极大的帮助和响应,强烈推荐他们。" +# author: "Martin Lasarga" +# company: "Product Manager at Axentria ECM by G.S.I." + +# # review loop +# - title: "GroupDocs.Viewer" +# content: "在项目中实现并使用 GroupDocs.Viewer for .NET 后,它看起来运行得很好。我已经用很多文档进行了测试,到目前为止一切顺利。我扔给它的所有内容都可以很好地呈现,并且看起来与在 PDF 查看器或 MS Word 中一样好。" +# author: "Mats Oustad" +# company: "Senior Consultant/Partner at Novanet AS" +---